From e4b362f49492e5c8909a68745954be5706d3faa0 Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Fri, 30 Jan 2026 16:42:45 +0100 Subject: [PATCH] fix: install script no longer tries to remove a non-existant authorfile --- installer/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/install.sh b/installer/install.sh index ba4ebfc..441b0ea 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -41,7 +41,7 @@ fi curl -L -o cocommit.tar.gz $URL && \ tar -xvzf cocommit.tar.gz && \ -rm cocommit.tar.gz && rm author.txt && \ +rm cocommit.tar.gz && \ chmod +x $file && ./$file -v if [ $? -ne 0 ]; then echo "Failed to extract the binary"