Sha256: adb064173b0315cb1baced6acab2d181a0bffdeabdb3c953877723e331a881b2

Contents?: true

Size: 761 Bytes

Versions: 656

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

656 entries across 656 versions & 5 rubygems

Version Path
fastlane-2.225.0 bin/bin-proxy
fastlane-2.224.0 bin/bin-proxy
fastlane-2.223.1 bin/bin-proxy
fastlane-2.223.0 bin/bin-proxy
fastlane-2.222.0 bin/bin-proxy
fastlane-2.221.1 bin/bin-proxy
fastlane-2.221.0 bin/bin-proxy
fastlane-2.220.0 bin/bin-proxy
fastlane-2.219.0 bin/bin-proxy
fastlane-2.218.0 bin/bin-proxy
fastlane-security-patched-2.216.0 bin/bin-proxy
fastlane-2.217.0 bin/bin-proxy
fastlane-2.216.0 bin/bin-proxy
fastlane-2.215.1 bin/bin-proxy
fastlane-2.215.0 bin/bin-proxy
fastlane-mercafacil-2.214.0 bin/bin-proxy
fastlane-2.214.0 bin/bin-proxy
fastlane-2.213.0 bin/bin-proxy
fastlane-2.212.2 bin/bin-proxy
fastlane_pricing_fix-2.212.1 bin/bin-proxy