Use BSD-compatible mktemp invocation

This commit is contained in:
Sergey "Shnatsel" Davidoff 2017-01-09 18:41:07 +03:00
parent b7cc3bf676
commit 39c9676170

View file

@ -17,7 +17,7 @@ fi
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 $runtime_dir/fa-dl.XXXXXXXXXX)"
cleanup() {
rm -r "$tempfile"