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.
2 parents def6081 + 99285d5 commit ce3ea69Copy full SHA for ce3ea69
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