From f9af0827f6fdee43d5baa650c2c48c430d2f1022 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Sat, 20 Aug 2016 03:54:42 +0300 Subject: [PATCH] Fix a serious bug that prevented the script from working on new systems. Probably introduced by the previous commit --- furaffinity-dl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/furaffinity-dl b/furaffinity-dl index 457e2d2..848d9a1 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -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