From 27b57bb3917160a9dd4846d50a8fb0e1f44c05e5 Mon Sep 17 00:00:00 2001 From: hunnywar Date: Mon, 30 Dec 2024 21:44:29 +0530 Subject: [PATCH] use licence Signed-off-by: hunnywar --- pkg/ide/browser-terminal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ide/browser-terminal.go b/pkg/ide/browser-terminal.go index 3c75872533..1b04d9be7f 100644 --- a/pkg/ide/browser-terminal.go +++ b/pkg/ide/browser-terminal.go @@ -33,7 +33,7 @@ func OpenBrowserTerminal(activeProfile config.Profile, workspaceId string, proje projectHostname := config.GetProjectHostname(activeProfile.Id, workspaceId, projectName) // Download and start ttyd - installServerCommand := exec.Command("ssh", projectHostname, "curl -fsSL https://raw.githubusercontent.com/hunnywar/daytona/f9ec6d34bf5c8b4b405cb4979483b066d922cf55/hack/get-ttyd.sh | sh") + installServerCommand := exec.Command("ssh", projectHostname, "curl -fsSL https://download.daytona.io/daytona/get-ttyd.sh | sh") installServerCommand.Stdout = io.Writer(&util.DebugLogWriter{}) installServerCommand.Stderr = io.Writer(&util.DebugLogWriter{})