summaryrefslogtreecommitdiffstats
path: root/checkrepo
diff options
context:
space:
mode:
Diffstat (limited to 'checkrepo')
-rwxr-xr-xcheckrepo4
1 files changed, 1 insertions, 3 deletions
diff --git a/checkrepo b/checkrepo
index ddce82a..b88f7c1 100755
--- a/checkrepo
+++ b/checkrepo
@@ -7,6 +7,7 @@ tmp="$(mktemp -d)"
[[ -f "${lock}" ]] && exit 1
touch "${lock}"
+trap "rm -rf '${lock}' '${tmp}'" EXIT INT TERM
echo '
BEGIN {
@@ -49,6 +50,3 @@ done
cat ${tmp}/md5sums-{i686,x86_64}.txt > ${tmp}/md5sums.txt
md5sum -c --quiet ${tmp}/md5sums.txt
-
-rm -rf ${tmp}
-rm -f "${lock}"