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.124.0.beta.20190516200101 bin/bin-proxy
fastlane-2.124.0.beta.20190515200049 bin/bin-proxy
fastlane-2.123.0 bin/bin-proxy
fastlane-2.123.0.beta.20190514200021 bin/bin-proxy
fastlane-2.123.0.beta.20190513200032 bin/bin-proxy
fastlane-2.123.0.beta.20190512200017 bin/bin-proxy
fastlane-2.123.0.beta.20190511200023 bin/bin-proxy
fastlane-2.123.0.beta.20190510200014 bin/bin-proxy
fastlane-2.123.0.beta.20190509200030 bin/bin-proxy
fastlane-2.123.0.beta.20190508200056 bin/bin-proxy
fastlane-2.123.0.beta.20190507200014 bin/bin-proxy
fastlane-2.123.0.beta.20190506200027 bin/bin-proxy
fastlane-2.123.0.beta.20190505200037 bin/bin-proxy
fastlane-2.123.0.beta.20190504200051 bin/bin-proxy
fastlane-2.122.0 bin/bin-proxy
fastlane-2.122.0.beta.20190502200046 bin/bin-proxy
fastlane-2.122.0.beta.20190501200015 bin/bin-proxy
fastlane-2.122.0.beta.20190430200043 bin/bin-proxy
fastlane-2.122.0.beta.20190429200122 bin/bin-proxy
fastlane-2.122.0.beta.20190428200018 bin/bin-proxy