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

12 lines
226 B
PowerShell

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