We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def6081 commit 99285d5Copy full SHA for 99285d5
fastlane/lib/util.rb
@@ -66,9 +66,9 @@ def auto_beta
66
end
67
68
def codepush_cli(app:, channel: 'nightly', install_target: '~2.2 || ~2.2.0-rc')
69
- target = "--targetBinaryVersion #{install_target}"
+ target = "--targetBinaryVersion '#{install_target}'"
70
# `fastlane x` runs in the ./fastlane folder, so we have to go up a level
71
Dir.chdir("..") do
72
- sh("code-push release-react '#{app}' ios -d '#{channel}' '#{target}'")
+ sh("code-push release-react '#{app}' ios -d '#{channel}' #{target}")
73
74
0 commit comments