Sha256: 43e0db60ee0aad9bf4f6dc56fdfce4d98f17deae2051e1f2110a929366d13ca6

Contents?: true

Size: 408 Bytes

Versions: 8

Compression:

Stored size: 408 Bytes

Contents

#! /usr/bin/env ruby

require 'autoproj/cli/main'
Autoproj::CLI.basic_setup

class Aup < Autoproj::CLI::Main
    def self.banner(*)
        "aup [options]"
    end
end

begin
    if ARGV.include?('--help') || ARGV.include?('help')
        Aup.start(['help', 'update'])
    else
        Aup.start(['update', '--aup', *ARGV])
    end
rescue Interrupt
    # Already notified in the reporting infrastructure
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
autoproj-2.7.0 bin/aup
autoproj-2.6.1 bin/aup
autoproj-2.6.0 bin/aup
autoproj-2.5.1 bin/aup
autoproj-2.5.0 bin/aup
autoproj-2.5.0.pre1 bin/aup
autoproj-2.4.0 bin/aup
autoproj-2.3.1 bin/aup