diff options
-rwxr-xr-x | localsyncthis | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/localsyncthis b/localsyncthis index a3948be..5960b2c 100755 --- a/localsyncthis +++ b/localsyncthis @@ -1,5 +1,7 @@ #!/bin/sh +set -e + # Initial setup prg=$(basename $0) copyright="(C) 2000-2002 Jonas Smedegaard <dr@jones.dk>" @@ -98,3 +100,5 @@ for workdir in $workdirs; do esac done done + +exit 0 |