Sha256: 9f054ff0417f1b674670af829f63a31a0c186ee397c72a12f0c3a60ff1ee91cd
Contents?: true
Size: 416 Bytes
Versions: 19
Compression:
Stored size: 416 Bytes
Contents
#! /usr/bin/env ruby require 'autoproj/cli/main' argv = 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', *argv, '--aup']) end rescue Interrupt # Already notified in the reporting infrastructure end
Version data entries
19 entries across 19 versions & 1 rubygems