Sha256: e584e62160806b1d1c11d3436137b50e71c38298b4fa6164ce9c63dd72829d33

Contents?: true

Size: 1.32 KB

Versions: 121

Compression:

Stored size: 1.32 KB

Contents

#! /usr/bin/env ruby
require 'optparse'

build_all = false
parser = OptionParser.new do |opt|
    opt.banner = "aup [options] [dir_or_package]
Runs autoproj update for the given directory or package name.
Selects the current directory if none is given. Override by
passing the --all option.

Accepts all options from autoproj update plus the following options:

"
    opt.on('--all', 'runs autoproj build without arguments (does not add the current directory)') do
        build_all = true
    end
    opt.on('--help', 'shows this help message') do
        puts parser
        exit(0)
    end
end

# Accept options that are invalid in +parser+, to pass them on to autoproj
# itself
options = ARGV.dup
remaining = []
while !options.empty?
    begin
        head = options.shift
        remaining.concat(parser.parse([head]))
    rescue OptionParser::InvalidOption
        remaining << head
        retry
    end
end

# If --all is not given *and* there is no non-option argument (i.e. no directory
# / package name), add the current directory to the command line
if remaining.grep(/^-/).size == remaining.size && !build_all
    remaining.push '.'
end
remaining.unshift 'update'

ORIGINAL_ARGV = ARGV.dup # This is used in case autoproj needs to update itself
ARGV.clear
ARGV.concat(remaining)
load File.expand_path('autoproj', File.dirname(__FILE__))

Version data entries

121 entries across 121 versions & 1 rubygems

Version Path
autoproj-1.10.2 bin/aup
autoproj-1.10.1 bin/aup
autoproj-1.10 bin/aup
autoproj-1.10.rc1 bin/aup
autoproj-1.9.7.rc23 bin/aup
autoproj-1.9.7.rc22 bin/aup
autoproj-1.9.7.rc21 bin/aup
autoproj-1.9.7.rc20 bin/aup
autoproj-1.9.7.rc19 bin/aup
autoproj-1.9.7.rc18 bin/aup
autoproj-1.9.7.rc17 bin/aup
autoproj-1.9.7.rc16 bin/aup
autoproj-1.9.7.rc15 bin/aup
autoproj-1.9.7.rc14 bin/aup
autoproj-1.9.7.rc13 bin/aup
autoproj-1.9.7.rc12 bin/aup
autoproj-1.9.7.rc11 bin/aup
autoproj-1.9.7.rc10 bin/aup
autoproj-1.9.7.rc9 bin/aup
autoproj-1.9.7.rc7 bin/aup