Sha256: bd90ceeb6bf29978b5e899aeaf1761762fc9b70fc3c044001b2086241bcc6e29
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 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
9 entries across 9 versions & 1 rubygems