Skip to content

Commit

Permalink
fix: added nasm to ./scripts/choco-install.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
CMCDragonkai committed May 17, 2023
1 parent 50866d9 commit 52d4748
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/choco-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,11 @@ choco install "$rust" --version="1.68.0" --require-checksums -y
if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$rust\$rust.1.68.0.nupkg" -PathType Leaf) ) {
Save-ChocoPackage -PackageName $rust
}

# Install nasm v2.16.01.20221231 (will use cache if exists)
$nasm = "nasm"
choco install "$nasm" --version="2.16.01.20221231" --require-checksums -y
# Internalise rust to cache if doesn't exist
if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$nasm\$nasm.2.16.01.20221231.nupkg" -PathType Leaf) ) {
Save-ChocoPackage -PackageName $nasm
}

0 comments on commit 52d4748

Please sign in to comment.