Exit code.
Returns exit code.
Parameters:
Returns:
exit code
6 7 8 9 10 11 12 13 14
# File 'lib/mry/cli.rb', line 6 def run(argv) parse_option(argv) if argv.empty? puts option.help return 1 end Runner.run(argv, to: @target, from: @from) return 0 end