diff options
Diffstat (limited to 'src/main.sh')
-rw-r--r-- | src/main.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.sh b/src/main.sh index 5998e9c..3b10ef7 100644 --- a/src/main.sh +++ b/src/main.sh @@ -63,9 +63,9 @@ _handle_sig() _unlock if [ "x${exit_status:+set}" = 'xset' ]; then - exit -- ${exit_status} + exit ${exit_status} else - exit -- $((128 + ${sig})) + exit $((128 + ${sig})) fi } |