Files
vsix-hpl-toolbox/scripts/run-standalone.ps1
2026-06-23 13:15:54 +08:00

12 lines
205 B
PowerShell

$ErrorActionPreference = 'Stop'
$root = Split-Path -Parent $MyInvocation.MyCommand.Path
$standalone = Join-Path $root 'standalone'
Push-Location $standalone
try {
go run .
} finally {
Pop-Location
}