From d264518cdebbbf58ee932f790291de624d2a3009 Mon Sep 17 00:00:00 2001 From: IntegratedQuantum Date: Thu, 5 Oct 2023 13:17:05 +0200 Subject: [PATCH] run.sh: Delete the tar archive after extracting. --- run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run.sh b/run.sh index 383b27da..61e44914 100755 --- a/run.sh +++ b/run.sh @@ -13,6 +13,7 @@ if [[ $(< compiler/version.txt) != "$version" ]]; then echo "Extracting tar file..." tar --xz -xf compiler/archive.tar.xz --directory compiler/zig --strip-components 1 echo "Done." + rm compiler/archive.tar.xz rm compiler/version.txt printf "$version" >> compiler/version.txt fi