mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
11 lines
206 B
PowerShell
11 lines
206 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
$buildOutput = & bun run --silent build:debug 2>&1
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Output $buildOutput
|
|
exit $LASTEXITCODE
|
|
}
|
|
|
|
& ./build/debug/bun-debug @args
|
|
exit $LASTEXITCODE
|