From 706bceb7e775c6e783f5b54e6434b68a9416c686 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Wed, 24 Aug 2022 10:35:46 -0500 Subject: [PATCH] fix: Remove reference to `coder rebuild` command (#3670) Closes #2464. --- cli/cliui/agent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cliui/agent.go b/cli/cliui/agent.go index a6993954df..ab98070e13 100644 --- a/cli/cliui/agent.go +++ b/cli/cliui/agent.go @@ -79,7 +79,7 @@ func Agent(ctx context.Context, writer io.Writer, opts AgentOptions) error { defer resourceMutex.Unlock() message := "Don't panic, your workspace is booting up!" if agent.Status == codersdk.WorkspaceAgentDisconnected { - message = "The workspace agent lost connection! Wait for it to reconnect or run: " + Styles.Code.Render("coder rebuild "+opts.WorkspaceName) + message = "The workspace agent lost connection! Wait for it to reconnect or restart your workspace." } // This saves the cursor position, then defers clearing from the cursor // position to the end of the screen.