fix: install script no longer tries to remove a non-existant authorfile

This commit is contained in:
Slug-Boi
2026-01-30 16:42:45 +01:00
parent 08c926f2f5
commit e4b362f494
+1 -1
View File
@@ -41,7 +41,7 @@ fi
curl -L -o cocommit.tar.gz $URL && \ curl -L -o cocommit.tar.gz $URL && \
tar -xvzf cocommit.tar.gz && \ tar -xvzf cocommit.tar.gz && \
rm cocommit.tar.gz && rm author.txt && \ rm cocommit.tar.gz && \
chmod +x $file && ./$file -v chmod +x $file && ./$file -v
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Failed to extract the binary" echo "Failed to extract the binary"