From ab2cfcdedbd748886b40504d463b3f8f969bd7b5 Mon Sep 17 00:00:00 2001 From: Arjan H Date: Sun, 4 Sep 2022 09:13:32 +0200 Subject: [PATCH] Make temp logfile name unique to prevent permission error (#56) --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 7a69b7a..95b8ade 100755 --- a/install +++ b/install @@ -90,7 +90,7 @@ msg_fatal() { # start_temporary_log() { backupLog=$installLog - installLog="/tmp/labca-install.log" + installLog="/tmp/labca-install-$$.log" touch "$installLog" }