lib/origen/commands/lsf.rb in origen-0.60.7 vs lib/origen/commands/lsf.rb in origen-0.60.8
- old
+ new
@@ -44,19 +44,19 @@
Usage: origen lsf [options]
EOT
opts.on('-v', '--verbose', 'Show job details') { options[:verbose] = true }
opts.on('-r', '--resubmit', 'Re-submit jobs') { options[:resubmit] = true }
- opts.on('-c', '--clear', 'Clear jobs') { options[:clear] = true }
+ opts.on('-c', '--clear', 'Clear jobs') { options[:clear] = true }
opts.on('-l', '--log', 'Build a log file from the completed jobs') { options[:log] = true }
# opts.on("-k", "--kill", "Kill jobs") { options[:kill] = true }
types = [:queuing, :running, :lost, :passed, :failed, :all]
opts.on('-t', '--type TYPE', types, 'Job type to apply the requested action to:', ' ' + types.join(', ')) { |t| options[:type] = t.to_sym }
opts.on('-i', '--id ID', String, 'Job ID to apply the requested action to') { |t| options[:id] = t }
opts.on('-w', '--wait', 'Wait for LSF processing to complete') { options[:wait_for_lsf_completion] = true }
# opts.on("-e", "--execute", "Execute....") { options[:execute] = true }
opts.on('-m', '--mode MODE', Origen::Mode::MODES, 'Force the Origen operating mode:', ' ' + Origen::Mode::MODES.join(', ')) { |_m| }
- opts.on('-d', '--debugger', 'Enable the debugger') { options[:debugger] = true }
+ opts.on('-d', '--debugger', 'Enable the debugger') { options[:debugger] = true }
# Apply any application option extensions to the OptionParser
Origen::CommandHelpers.extend_options(opts, app_options, options)
opts.separator ''
opts.on('-h', '--help', 'Show this message') { puts opts; exit }
end