From 7a673b4742ca444c911517c7a748d704ec160f06 Mon Sep 17 00:00:00 2001 From: prx Date: Tue, 28 Sep 2021 10:06:24 +0200 Subject: [PATCH] ~/Downloads can be non existent, /tmp is always here --- issues/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/issues/Makefile b/issues/Makefile index 65bb002..713bc08 100644 --- a/issues/Makefile +++ b/issues/Makefile @@ -6,9 +6,9 @@ clean: rm ../dev/*html test: - ./make_issue.sh current ~/Downloads/current-issue.html - xdg-open ~/Downloads/current-issue.html + ./make_issue.sh current /tmp/current-issue.html + xdg-open ~/tmp/current-issue.html testsite: - cp -fr ../public ~/Downloads/ - xdg-open ~/Downloads/public/index.html + cp -fr ../public ~/tmp/ + xdg-open ~/tmp/public/index.html