Where are my build files when I use `go run`
9 June 2020
By default, 'go run' runs the compiled binary directly. The binaries are stored in a temp
work folder, to see where they are stored use the -work
flag. This directory path is stored in the GOCACHE
env variable. Use go env
to check its value
Demo
Sample Output
When you run this go will not delete the temporary build when exiting. The default directory may vary with your system & GOPATH
.
Last updated