Sha256: 4f9bdf809dda6e34608a0877903b87d1de36d14a34668be18f35b341b3292e4e

Contents?: true

Size: 759 Bytes

Versions: 460

Compression:

Stored size: 759 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

460 entries across 460 versions & 1 rubygems

Version Path
fastlane-2.74.1 bin/bin-proxy
fastlane-2.74.0 bin/bin-proxy
fastlane-2.74.0.beta.20180108010004 bin/bin-proxy
fastlane-2.74.0.beta.20180107010004 bin/bin-proxy
fastlane-2.74.0.beta.20180106010004 bin/bin-proxy
fastlane-2.73.0 bin/bin-proxy
fastlane-2.73.0.beta.20180105010003 bin/bin-proxy
fastlane-2.73.0.beta.20180104010004 bin/bin-proxy
fastlane-2.73.0.beta.20180103010003 bin/bin-proxy
fastlane-2.72.0 bin/bin-proxy
fastlane-2.72.0.beta.20180102010003 bin/bin-proxy
fastlane-2.72.0.beta.20180101010003 bin/bin-proxy
fastlane-2.72.0.beta.20171231010003 bin/bin-proxy
fastlane-2.71.1 bin/bin-proxy
fastlane-2.72.0.beta.20171230010003 bin/bin-proxy
fastlane-2.72.0.beta.20171229010003 bin/bin-proxy
fastlane-2.72.0.beta.20171228010004 bin/bin-proxy
fastlane-2.71.0 bin/bin-proxy
fastlane-2.71.0.beta.20171227010004 bin/bin-proxy
fastlane-2.71.0.beta.20171226010004 bin/bin-proxy