mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-16 05:02:42 +00:00
11 lines
263 B
PowerShell
Executable File
11 lines
263 B
PowerShell
Executable File
if(!(Test-Path -Path "C:/byond")){
|
|
bash tools/ci/download_byond.sh
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:/byond.zip", "C:/")
|
|
Remove-Item C:/byond.zip
|
|
}
|
|
|
|
bash tools/ci/install_node.sh
|
|
bash tools/build/build -Werror
|
|
|
|
exit $LASTEXITCODE
|