feat: add Go build cache directory to setupDirectories function

- Included a new directory for the Go build cache in the setupDirectories function to enhance the Go environment setup.
This commit is contained in:
anonpenguin23 2025-10-31 14:24:57 +02:00
parent 7b7087e5eb
commit ebe2706ad8

View File

@ -680,7 +680,8 @@ func setupDirectories() {
"/home/debros/bin", "/home/debros/bin",
"/home/debros/src", "/home/debros/src",
"/home/debros/.debros", "/home/debros/.debros",
"/home/debros/go", // Go module cache directory "/home/debros/go", // Go module cache directory
"/home/debros/.cache", // Go build cache directory
} }
for _, dir := range dirs { for _, dir := range dirs {