-
Notifications
You must be signed in to change notification settings - Fork 645
temp directories left in /tmp/ #3137
Comments
If I recall correctly, this is caused by the |
@mwat56 do you use any Go tools running other than
|
Hi @hyangah
Here my settings:
Nothing that I'm aware of.
As I mentioned before switching The only change of my system was updating to Go v1.14 therefore I suspect the problem is caused by some interaction between VSCode, its Go plugin and the Go system as such i.e. compiler, formatter etc. |
@mwat56 thank you for providing the details. Since you observed Based on the directory names, it's clear that it's left behind by go command, but nowadays, Maybe can you watch the /tmp/ directory for awhile and see when the directory is left behind for a while? E.g. before closing vscode, was the directory reasonably clean? etc. Also check the Output channels ( Experimenting after disabling some features (lint on save, live errors, goto symbol,...) and other extensions ( |
This issue has been closed automatically because it needs more information and has not had recent activity. Thank you for your contributions. |
What version of Go, VS Code & VS Code Go extension are you using?
go version
to get version of Gocode -v
orcode-insiders -v
to get version of VS Code or VS Code Insidersgo env GOOS GOARCH
to get the operating system and processor architecture detailsamd64
Describe the bug
After updating to Go 1.14 the same problem as in #2403 and #2442 occurred again that is hundreds of directories like
./go-build403533598
were created in/tmp
and left after closing the VSCode program.BTW: Switching OFF
gopls
(as discussed last year) didn't change the described behaviour, it only broke the cross-references (i.e. use F12 to jump to the source of a function).The text was updated successfully, but these errors were encountered: