Sha256: 9f345c580e7923ed8c3a28f2fc6299fe65f10ded0ea8bd80fc8bbeb011d5ff56
Contents?: true
Size: 420 Bytes
Versions: 6
Compression:
Stored size: 420 Bytes
Contents
#! /usr/bin/env ruby require "autoproj/cli/main" argv = 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(%w[help build]) else Amake.start(["build", "--amake", *argv]) end rescue Interrupt # Already notified in the reporting infrastructure end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
autoproj-2.17.0 | bin/amake |
autoproj-2.16.0 | bin/amake |
autoproj-2.15.3 | bin/amake |
autoproj-2.15.2 | bin/amake |
autoproj-2.15.1 | bin/amake |
autoproj-2.15.0 | bin/amake |