From d09b7e7495109a2ef21205255e6e48dfbfc804f2 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 20 Jun 2025 04:07:12 +0200 Subject: [PATCH] rename var --- linux/pkg/terminal/spawn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/pkg/terminal/spawn.go b/linux/pkg/terminal/spawn.go index b18393af..3e28c2fe 100644 --- a/linux/pkg/terminal/spawn.go +++ b/linux/pkg/terminal/spawn.go @@ -9,11 +9,11 @@ import ( // SpawnInTerminal opens a new terminal window running the specified command // This is used as a fallback when the Mac app's terminal service is not available -func SpawnInTerminal(sessionID, vibetunnelPath string, cmdline []string, workingDir string) error { +func SpawnInTerminal(sessionID, vtBinaryPath string, cmdline []string, workingDir string) error { // Format the command to run in the terminal // This matches the format used by the Rust implementation vtCommand := fmt.Sprintf("TTY_SESSION_ID=\"%s\" \"%s\" -- %s", - sessionID, vibetunnelPath, shellQuoteArgs(cmdline)) + sessionID, vtBinaryPath, shellQuoteArgs(cmdline)) switch runtime.GOOS { case "darwin":