You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another issue is that air falls back to default config silently.
While I was looking for solutions, I changed -gcflags to use ", \' and \". It might be obvious that using " will cause parsing failure, but only when calling air -c .air.toml would produce the error.
Calling air should have explicit warning of not using local .air.toml. (Like #709)
While using air to run delve, I edit
cmd
in.air.toml
to have build flags.However this would produce error:
After a bit looking into the codes, I found out it was because of using
cmd /c
. Inrunner/util_windows.go:24
, we haveYou can run this on Windows and reproduce the bug:
Maybe replacing
cmd /c
withpowershell
?The text was updated successfully, but these errors were encountered: