diff options
author | elijah <elijah@riseup.net> | 2016-10-04 16:04:51 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-10-04 16:04:51 -0700 |
commit | f95e08ef7d8defbde4a19e138b1ac4ebc9677669 (patch) | |
tree | af5c969c905a8d2a95f2b2aa7c4dd6f4b8763126 /bin/leap | |
parent | e207c628f9aeadf1c93b6756f00bb97789dc7673 (diff) |
[bug] always log the leap cli command arguments to the log file, if any. closes #8509develop
Diffstat (limited to 'bin/leap')
-rwxr-xr-x | bin/leap | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -79,6 +79,9 @@ module LeapCli::Commands # run command begin + if ARGV.any? + LeapCli.log_raw(:log, nil, "COMMAND") { 'leap ' + ARGV.join(' ') } + end exit_status = run(ARGV) exit(LeapCli::Util.exit_status || exit_status) rescue StandardError => exc |