Browse Source

Remove downloaded llvm archive after extracting it

update-llvm-workflow
duckdoom5 5 months ago committed by tritao
parent
commit
f34f56efa4
  1. 4
      build/llvm/LLVM.lua

4
build/llvm/LLVM.lua

@ -49,6 +49,10 @@ function clone_llvm() @@ -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()

Loading…
Cancel
Save