diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-11-09 00:27:43 -0600 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-11-09 00:27:43 -0600 |
commit | 2063416ef4a160f56bb47f203257fe7903ba77e2 (patch) | |
tree | 9343432bd3d3135f11c43798316422f0344661aa | |
parent | 23f48e65a5f4133be8a5d2883de6ffb2f4f04962 (diff) |
Remove an erroneous '1' signal trap for cleanup() func
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | db-move | 2 | ||||
-rwxr-xr-x | db-remove | 2 | ||||
-rwxr-xr-x | db-update | 2 | ||||
-rwxr-xr-x | testing2x | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -48,7 +48,7 @@ die() { } trap ctrl_c 2 -trap cleanup 0 1 +trap cleanup 0 repo_lock $repoto $arch repo_lock $repofrom $arch @@ -43,7 +43,7 @@ die() { } trap ctrl_c 2 -trap cleanup 0 1 +trap cleanup 0 repo_lock $reponame $arch @@ -67,7 +67,7 @@ die() { } trap ctrl_c 2 -trap cleanup 0 1 +trap cleanup 0 repo_lock $reponame $arch @@ -26,7 +26,7 @@ ctrl_c() { } trap ctrl_c 2 -trap cleanup 0 1 +trap cleanup 0 cd "${WORKDIR}" /usr/bin/svn checkout -N ${svnpath} checkout |