Skip to content

Commit

Permalink
fix(local cli): prevent npm from parsing arguments (microsoft#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisKraemer authored Oct 20, 2023
1 parent 62e9573 commit df81cda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def self.run(params)
base_executable = "appcenter "

if use_local_appcenter_cli
base_executable = "npm exec " + base_executable
base_executable = "npm exec -- " + base_executable
end

command = base_executable + "codepush release-react --token #{token} --app #{owner}/#{app} --deployment-name #{deployment} --development #{dev} "
Expand Down

0 comments on commit df81cda

Please sign in to comment.