From f591449df2cf58e478a4274178cae741a3bf83a6 Mon Sep 17 00:00:00 2001 From: MichiRecRoom <1008889+LikeLakers2@users.noreply.github.com> Date: Sun, 16 Feb 2025 16:30:37 -0500 Subject: [PATCH] [NO GBP] Remove the call to `install_node.sh` from the Windows CI build script (#89494) ## About The Pull Request Back when I moved all of the CI to use `actions/setup-node` in https://github.com/tgstation/tgstation/pull/89363, it seems I forgot to remove a line from the Windows build script that attempts to call `tools/ci/install_node.sh`. Thankfully, nothing was broken - it just complains that the script doesn't exist, and continues on as if nothing happened. That said, there's also no point to the error - so this PR removes that line. --- tools/ci/build.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/ci/build.ps1 b/tools/ci/build.ps1 index 4694cc3be58..ca2848af159 100644 --- a/tools/ci/build.ps1 +++ b/tools/ci/build.ps1 @@ -4,7 +4,6 @@ if(!(Test-Path -Path "C:/byond")){ Remove-Item C:/byond.zip } -bash tools/ci/install_node.sh bash tools/build/build -Werror exit $LASTEXITCODE