diff options
author | Jonas Smedegaard <dr@jones.dk> | 2002-07-07 10:06:47 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2002-07-07 10:06:47 +0000 |
commit | ced79cee6f9fd110c2febb98228c9afbd64f489e (patch) | |
tree | 18d1d995a45eb01c87b7a60b52ec05c1890bc4d6 /localsyncthis | |
parent | 09062728e0b82b5dfe7e1957ca668c6065636ad8 (diff) |
Have localsyncthis exit cleanly (why doesn't it by itself?).
Diffstat (limited to 'localsyncthis')
-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 |