Browse Source

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.
pull/355/head
Adam Johnson 1 year ago
parent
commit
021cb77b1b
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 4
      build.ps1

4
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!" }
}

Loading…
Cancel
Save