Sha256: 8d70f71964fe6a98d8fb996157e54acc9ee21cc36e7403d405874baae2765e8f
Contents?: true
Size: 422 Bytes
Versions: 19
Compression:
Stored size: 422 Bytes
Contents
#! /usr/bin/env ruby require 'autoproj/cli/main' argv = Autoproj::CLI.basic_setup class Alocate < Autoproj::CLI::Main def self.banner(*) "alocate [options]" end end begin if argv.include?('--help') || argv.include?('help') Alocate.start(['help', 'locate']) else Alocate.start(['locate', *argv]) end rescue Interrupt # Already notified in the reporting infrastructure end
Version data entries
19 entries across 19 versions & 1 rubygems