Actually delete the runtime dir

This commit is contained in:
Sergey "Shnatsel" Davidoff 2016-08-20 03:59:55 +03:00
parent f9af0827f6
commit 3a939ad587

View file

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