From 021cb77b1b247c99a956a5a5c14adfc3be2c36d7 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 16 Jan 2023 18:52:20 -0500 Subject: [PATCH] Fix `build.ps1 -Dev`. These tickmarks seem to have been from when this was spread over many lines. Debunk those because they break the build. --- build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.ps1 b/build.ps1 index b962946..2b43df8 100644 --- a/build.ps1 +++ b/build.ps1 @@ -160,9 +160,9 @@ function Complete-KormanBuild($OutputDir, $Install = $false) { Write-Host -ForegroundColor Cyan "Aaaand they're off!!!" # Don't even ask. if ($Install) { - cmake --build `"$OutputDir`" --target INSTALL --config Release --parallel + cmake --build "$OutputDir" --target INSTALL --config Release --parallel } else { - cmake --build `"$OutputDir`" @($InstallArg) --config Release --parallel + cmake --build "$OutputDir" @($InstallArg) --config Release --parallel } if ($LASTEXITCODE -Ne 0) { throw "Build failed!" } }