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