Sha256: e20703036c56e7ab4b401ce17c90243e729e8d4e2640a761ec69ea18771f4a92
Contents?: true
Size: 558 Bytes
Versions: 26
Compression:
Stored size: 558 Bytes
Contents
#! /usr/bin/ruby if RUBY_VERSION < "2.0.0" STDERR.puts "autoproj requires Ruby >= 2.0.0" exit 1 elsif ENV['AUTOPROJ_CURRENT_ROOT'] && (ENV['AUTOPROJ_CURRENT_ROOT'] != Dir.pwd) STDERR.puts "it seems that you've already loaded an env.sh script in this console, open a new console and try again" exit 1 end AUTOPROJ_OPS_INSTALL ENV.delete('BUNDLE_GEMFILE') ENV.delete('RUBYLIB') ops = Autoproj::Ops::Install.new(Dir.pwd) bootstrap_options = ops.parse_options(ARGV) ops.stage1 ops.call_stage2 ops.run_autoproj 'bootstrap', *bootstrap_options
Version data entries
26 entries across 26 versions & 1 rubygems