Sha256: 92a524df34cc5d6d7b69eb4984476e4006d0cc728d3fbca4b275f7f582947d1d

Contents?: true

Size: 488 Bytes

Versions: 26

Compression:

Stored size: 488 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)
ops.parse_options(ARGV)
ops.stage1
ops.call_stage2

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
autoproj-2.0.0.rc17 bin/autoproj_install.in
autoproj-2.0.0.rc16 bin/autoproj_install.in
autoproj-2.0.0.rc15 bin/autoproj_install.in
autoproj-2.0.0.rc14 bin/autoproj_install.in
autoproj-2.0.0.rc13 bin/autoproj_install.in
autoproj-2.0.0.rc12 bin/autoproj_install.in