Sha256: dd023b3cbab0f78f49321d37079a4dfb1988bc7dec2af9fd05f0f9cadb43431c

Contents?: true

Size: 443 Bytes

Versions: 1

Compression:

Stored size: 443 Bytes

Contents

#! /usr/bin/ruby

if RUBY_VERSION < "2.0.0"
    STDERR.puts "autoproj requires Ruby >= 2.0.0"
    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

# we assume that Install#run loads bundler and autobuild. Load autoproj and run
# bootstrap
require 'autoproj/cli/main'
Autoproj::CLI::Main.start(['bootstrap', *bootstrap_options])

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
autoproj-2.0.0.rc8 bin/autoproj_bootstrap.in