Fixed regression: made it safe to run the script in parallel again

This commit is contained in:
Sergey "Shnatsel" Davidoff 2016-08-20 13:08:44 +03:00
parent 3a939ad587
commit 330c007ef1

View file

@ -20,7 +20,7 @@ mkdir -p "$runtime_dir"
tempfile="$(umask u=rwx,g=,o= && mktemp --tmpdir=$runtime_dir)"
cleanup() {
rm -r "$runtime_dir"
rm -r "$tempfile"
}
trap cleanup EXIT