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.71.0.beta.20171225010003 bin/bin-proxy
fastlane-2.71.0.beta.20171224010003 bin/bin-proxy
fastlane-2.71.0.beta.20171223010003 bin/bin-proxy
fastlane-2.71.0.beta.20171222010003 bin/bin-proxy
fastlane-2.70.3 bin/bin-proxy
fastlane-2.71.0.beta.20171221010003 bin/bin-proxy
fastlane-2.70.2 bin/bin-proxy
fastlane-2.71.0.beta.20171220010004 bin/bin-proxy
fastlane-2.71.0.beta.20171219010003 bin/bin-proxy
fastlane-2.70.1 bin/bin-proxy
fastlane-2.70.0 bin/bin-proxy
fastlane-2.70.0.beta.20171217010003 bin/bin-proxy
fastlane-2.70.0.beta.20171216010003 bin/bin-proxy
fastlane-2.70.0.beta.20171215010003 bin/bin-proxy
fastlane-2.69.3 bin/bin-proxy
fastlane-2.70.0.beta.20171214010003 bin/bin-proxy
fastlane-2.69.2 bin/bin-proxy
fastlane-2.69.1 bin/bin-proxy
fastlane-2.70.0.beta.20171213010003 bin/bin-proxy
fastlane-2.69.0 bin/bin-proxy