bin/bin-proxy in fastlane-2.74.1 vs bin/bin-proxy in fastlane-2.75.0.beta.20180109010003
- old
+ new
@@ -5,11 +5,11 @@
tool_name = File.basename($0)
full_params = ARGV.shelljoin
-puts "[WARNING] You are calling #{tool_name} directly. Usage of the tool name without the `fastlane` prefix is deprecated in fastlane 2.0".yellow
-puts "Please update your scripts to use `fastlane #{tool_name} #{full_params}` instead.".yellow
+puts("[WARNING] You are calling #{tool_name} directly. Usage of the tool name without the `fastlane` prefix is deprecated in fastlane 2.0".yellow)
+puts("Please update your scripts to use `fastlane #{tool_name} #{full_params}` instead.".yellow)
exec_arr = ["fastlane", tool_name] + ARGV
# The * turns the array into a parameter list
# This is using the form of exec which takes a variable parameter list, e.g. `exec(command, param1, param2, ...)`