Fix a serious bug that prevented the script from working on new systems. Probably introduced by the previous commit

This commit is contained in:
Sergey "Shnatsel" Davidoff 2016-08-20 03:54:42 +03:00
parent 5eae15966d
commit f9af0827f6

View file

@ -16,10 +16,11 @@ You can also log in to FurAffinity and download restricted content, like this:
fi
runtime_dir="$HOME"'/.cache/furaffinity-dl'
mkdir -p "$runtime_dir"
tempfile="$(umask u=rwx,g=,o= && mktemp --tmpdir=$runtime_dir)"
cleanup() {
rm -f "$tempfile"
rm -f "$runtime_dir"
}
trap cleanup EXIT