mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-21 22:47:19 +00:00
Added an option to tools/build/build to treat DreamMaker warnings as errors. Enabled this option only for Windows Build (tools/ci/build.ps1). Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>
11 lines
263 B
PowerShell
11 lines
263 B
PowerShell
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
|