Sha256: d402117575aab11d504edfa7b27fa04ccdcd49b56778afacea161f8d698392fb

Contents?: true

Size: 417 Bytes

Versions: 9

Compression:

Stored size: 417 Bytes

Contents

#! /usr/bin/env ruby

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

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

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