Browse Source

Remove downloaded llvm archive after extracting it

pull/1906/head
duckdoom5 5 months ago
parent
commit
6914876697
  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