Sha256: adb064173b0315cb1baced6acab2d181a0bffdeabdb3c953877723e331a881b2

Contents?: true

Size: 761 Bytes

Versions: 657

Compression:

Stored size: 761 Bytes

Contents

#!/usr/bin/env ruby

require "colored"
require "shellwords"

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)

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, ...)`
# We need to use that, because otherwise invocations like
# `spaceauth -u user@fastlane.tools` would recognize "-u user@fastlane.tools" as a single parameter and throw errors
exec(*exec_arr)

Version data entries

657 entries across 657 versions & 5 rubygems

Version Path
fastlane-2.132.0.beta.20190920200012 bin/bin-proxy
fastlane-2.132.0.beta.20190919200100 bin/bin-proxy
fastlane-2.132.0.beta.20190918200023 bin/bin-proxy
fastlane-2.132.0.beta.20190917200011 bin/bin-proxy
fastlane-2.132.0.beta.20190916200055 bin/bin-proxy
fastlane-2.132.0.beta.20190915200038 bin/bin-proxy
fastlane-2.132.0.beta.20190914200034 bin/bin-proxy
fastlane-2.132.0.beta.20190913200058 bin/bin-proxy
fastlane-2.132.0.beta.20190912200052 bin/bin-proxy
fastlane-2.131.0 bin/bin-proxy
fastlane-2.131.0.beta.20190911200010 bin/bin-proxy
fastlane-2.131.0.beta.20190910200104 bin/bin-proxy
fastlane-2.131.0.beta.20190909200058 bin/bin-proxy
fastlane-2.131.0.beta.20190908200041 bin/bin-proxy
fastlane-2.131.0.beta.20190907200030 bin/bin-proxy
fastlane-2.131.0.beta.20190906200026 bin/bin-proxy
fastlane-2.131.0.beta.20190905200113 bin/bin-proxy
fastlane-2.131.0.beta.20190904200040 bin/bin-proxy
fastlane-2.131.0.beta.20190903200013 bin/bin-proxy
fastlane-2.131.0.beta.20190902200022 bin/bin-proxy