tfix 69eca5c1d71e69, source tomb source was exiting - tomb - the crypto undertaker
HTML git clone git://parazyd.org/tomb.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit f9f8b16a4d23f8b052ff9afa9ee2e2b0c01f7ba4
DIR parent 1b4c08e904b28a976be8e70b4d51d62a0dccec95
HTML Author: boyska <piuttosto@logorroici.org>
Date: Sun, 30 Oct 2011 19:50:33 +0100
fix 69eca5c1d71e69, source tomb source was exiting
Diffstat:
M src/tomb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
DIR diff --git a/src/tomb b/src/tomb
t@@ -1374,4 +1374,6 @@ main() {
check_bin
main $@
-exit $?
+if [[ $? != 0 ]]; then #this "if" seems useless, but avoid source tomb source from exiting
+ exit $?
+fi