We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
scripts/choco-install.ps1
1 parent 63faaa3 commit a6d30f5Copy full SHA for a6d30f5
scripts/choco-install.ps1
@@ -37,6 +37,14 @@ if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$rust\$rust.1.68.0
37
Save-ChocoPackage -PackageName $rust
38
}
39
40
+# Install llvm v16.0.3 (will use cache if exists)
41
+$llvm = "llvm"
42
+choco install "$llvm" --version="16.0.3" --require-checksums -y
43
+# Internalise rust to cache if doesn't exist
44
+if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$llvm\$llvm.16.0.3.nupkg" -PathType Leaf) ) {
45
+ Save-ChocoPackage -PackageName $llvm
46
+}
47
+
48
# Install nasm v2.16.01.20221231 (will use cache if exists)
49
$nasm = "nasm"
50
choco install "$nasm" --version="2.16.01.20221231" --require-checksums -y
0 commit comments