Skip to content

Instantly share code, notes, and snippets.

@jakenvac
Last active July 25, 2018 11:07
Show Gist options
  • Save jakenvac/7f73d004de03ab4cae3fecccd893acb7 to your computer and use it in GitHub Desktop.
Save jakenvac/7f73d004de03ab4cae3fecccd893acb7 to your computer and use it in GitHub Desktop.
workaround for vs-code go #219 modified version of KingRikkie to check for build failures
$EXECUTABLE_NAME = "crump8term"
$EXECUTABLE_PATH = ".\$EXECUTABLE_NAME"
$GoPath = ((go env | Select-String -Pattern "GOPATH=" | Out-String) -split "=")[1].TrimEnd()
$GoPath += "\bin"
Set-Location $EXECUTABLE_PATH
go build -gcflags "-N -l"
if($LastExitCode -eq 0) {
Write-Output 'build success'
} else {
Write-Error 'go build failed'
Exit 1
}
Start-Process ".\$EXECUTABLE_NAME.exe"
$timeOut = 20
$started = $false
# wait for process to start
Do {
Start-Sleep -Milliseconds 250
$timeOut--
$Proc = Get-Process $EXECUTABLE_NAME -ErrorAction SilentlyContinue
If ($Proc) {
$started = $true
}
}
Until ($started -or $timeOut -eq 0)
If (!($started)) {
Write-Error 'Process did not start'
Exit 1
}
$ProcId = ($Proc | Select-Object -expand Id)
Start-Process -FilePath "$GoPath\dlv.exe" -ArgumentList "attach $ProcId --headless --listen=:2345 --log" -WindowStyle Hidden
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment