Sha256: 7e32ba3577aa23d6486f14a8347f8edd8d96d99b8a7b99aa65695efdca6dcb11
Contents?: true
Size: 527 Bytes
Versions: 18
Compression:
Stored size: 527 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 require 'autoproj/ops/install' ENV.delete('BUNDLE_GEMFILE') ENV.delete('RUBYLIB') ops = Autoproj::Ops::Install.new(Dir.pwd) ops.parse_options(ARGV) ops.stage1 if !ops.skip_stage2? ops.call_stage2 end
Version data entries
18 entries across 18 versions & 1 rubygems