From ffe7964330cdd401eae4a89aaaa151e8a3fa61ba Mon Sep 17 00:00:00 2001 From: penguinehis Date: Sat, 4 Jul 2026 18:36:47 -0300 Subject: [PATCH 1/2] Atualizar install.sh --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 47956e0..0474a92 100644 --- a/install.sh +++ b/install.sh @@ -265,6 +265,7 @@ cd "$SCRIPT_DIR" export GOPATH=/tmp/gopath_sshpanel export GOCACHE=/tmp/gocache_sshpanel go mod download +go mod tidy go build -ldflags="-s -w" -o "$INSTALL_DIR/sshpanel" . info " Binary: $INSTALL_DIR/sshpanel" cp -r "$SCRIPT_DIR/admin/"* "$INSTALL_DIR/admin/" From 0b5679bfeb7fa3bbf811fc7dd1afbd372884fb2c Mon Sep 17 00:00:00 2001 From: penguinehis Date: Sat, 4 Jul 2026 18:37:08 -0300 Subject: [PATCH 2/2] Atualizar update.sh --- update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update.sh b/update.sh index e3fded3..0a2a81d 100644 --- a/update.sh +++ b/update.sh @@ -289,6 +289,7 @@ build_binary() { export GOPATH=/tmp/gopath_sshpanel export GOCACHE=/tmp/gocache_sshpanel go mod download + go mod tidy go build -ldflags="-s -w" -o /tmp/sshpanel_new . info " Build complete." }