mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Fix a serious bug that prevented the script from working on new systems. Probably introduced by the previous commit
This commit is contained in:
parent
5eae15966d
commit
f9af0827f6
1 changed files with 2 additions and 1 deletions
|
@ -16,10 +16,11 @@ You can also log in to FurAffinity and download restricted content, like this:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
runtime_dir="$HOME"'/.cache/furaffinity-dl'
|
runtime_dir="$HOME"'/.cache/furaffinity-dl'
|
||||||
|
mkdir -p "$runtime_dir"
|
||||||
tempfile="$(umask u=rwx,g=,o= && mktemp --tmpdir=$runtime_dir)"
|
tempfile="$(umask u=rwx,g=,o= && mktemp --tmpdir=$runtime_dir)"
|
||||||
|
|
||||||
cleanup() {
|
cleanup() {
|
||||||
rm -f "$tempfile"
|
rm -f "$runtime_dir"
|
||||||
}
|
}
|
||||||
trap cleanup EXIT
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue