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