From 6914876697ee825f2cfb622afc03c35b1d0c3053 Mon Sep 17 00:00:00 2001 From: duckdoom5 Date: Wed, 5 Feb 2025 20:47:49 +0100 Subject: [PATCH] Remove downloaded llvm archive after extracting it --- build/llvm/LLVM.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/llvm/LLVM.lua b/build/llvm/LLVM.lua index e906dbd3..d7bbc298 100644 --- a/build/llvm/LLVM.lua +++ b/build/llvm/LLVM.lua @@ -49,6 +49,10 @@ function clone_llvm() extract(archive, '.') os.rename('llvm-project-'..llvm_release, llvm) + + -- delete the extracted archive + print("Cleaning up downloaded artifacts...") + os.remove(archive) end function get_vs_version()