12 lines
205 B
PowerShell
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
|
|
}
|