summaryrefslogtreecommitdiffstats
path: root/testing2x
diff options
context:
space:
mode:
Diffstat (limited to 'testing2x')
-rwxr-xr-xtesting2x16
1 files changed, 0 insertions, 16 deletions
diff --git a/testing2x b/testing2x
index e9fbeaa..bf48be6 100755
--- a/testing2x
+++ b/testing2x
@@ -12,20 +12,6 @@ case "$0" in
;;
esac
-cleanup() {
- trap '' 0 2
- rm -rf "${WORKDIR}"
- [ -n "$1" ] && exit $1
-}
-
-ctrl_c() {
- echo "Interrupted" >&2
- cleanup 0
-}
-
-trap ctrl_c 2
-trap cleanup 0
-
cd "${WORKDIR}"
/usr/bin/svn checkout -N $SVNREPO checkout
cd checkout
@@ -49,5 +35,3 @@ for pkg in $*; do
echo "===> Warning: ${pkg} is not in testing-${_arch}"
fi
done
-
-cleanup