diff options
author | elijah <elijah@riseup.net> | 2013-03-14 02:05:58 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-03-14 02:05:58 -0700 |
commit | a76749a837a2552b72be34d91330f8983f740860 (patch) | |
tree | ae392ced56be7dc35b22cbe37713b32deabdf169 /bin | |
parent | 2fd87063c0f48b67cb53bba6d52d82a091be6a7b (diff) | |
download | leap_cli-a76749a837a2552b72be34d91330f8983f740860.tar.gz leap_cli-a76749a837a2552b72be34d91330f8983f740860.tar.bz2 |
added exit codes for puppet apply
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/leap | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -76,5 +76,6 @@ module LeapCli::Commands # load commands and run commands_from('leap_cli/commands') ORIGINAL_ARGV = ARGV.dup - exit run(ARGV) + exit_status = run(ARGV) + exit(LeapCli::Util.exit_status || exit_status) end |