From ebe2706ad87ba970adbac8200f3bc77c3ad0fca2 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Fri, 31 Oct 2025 14:24:57 +0200 Subject: [PATCH] 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. --- pkg/cli/setup.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/cli/setup.go b/pkg/cli/setup.go index 694f1e0..ad527f1 100644 --- a/pkg/cli/setup.go +++ b/pkg/cli/setup.go @@ -680,7 +680,8 @@ func setupDirectories() { "/home/debros/bin", "/home/debros/src", "/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 {