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

Version Path
autoproj-2.3.1 bin/autoproj_install.in
autoproj-2.3.0 bin/autoproj_install.in
autoproj-2.2.2 bin/autoproj_install.in
autoproj-2.2.1 bin/autoproj_install.in
autoproj-2.2.0 bin/autoproj_install.in
autoproj-2.1.2 bin/autoproj_install.in
autoproj-2.1.1 bin/autoproj_install.in
autoproj-2.1.0 bin/autoproj_install.in
autoproj-2.1.0.rc1 bin/autoproj_install.in
autoproj-2.0.3 bin/autoproj_install.in
autoproj-2.0.2 bin/autoproj_install.in
autoproj-2.0.1 bin/autoproj_install.in
autoproj-2.0.0 bin/autoproj_install.in
autoproj-2.0.0.rc42 bin/autoproj_install.in
autoproj-2.0.0.rc41 bin/autoproj_install.in
autoproj-2.0.0.rc40 bin/autoproj_install.in
autoproj-2.0.0.rc39 bin/autoproj_install.in
autoproj-2.0.0.rc38 bin/autoproj_install.in