From a09771382942a563450171f5d26da88d6fd9f5b1 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 16 Mar 2021 22:59:30 -0400 Subject: [PATCH] remove references of coder could --- README.md | 2 +- src/node/cli.ts | 4 ++-- src/node/coder_cloud.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 34407978..529975a4 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Consider running code-server with the beta flag `--link` if you don't want to wo ```bash $ code-server --link -Proxying code-server to Coder Cloud, you can access your IDE at https://valmar-jon.cdr.co +Proxying code-server, you can access your IDE at https://valmar-jon.cdr.co ``` ## FAQ diff --git a/src/node/cli.ts b/src/node/cli.ts index 0990797d..1a68c27b 100644 --- a/src/node/cli.ts +++ b/src/node/cli.ts @@ -195,8 +195,8 @@ const options: Options> = { link: { type: OptionalString, description: ` - Securely bind code-server via Coder Cloud with the passed name. You'll get a URL like - https://myname.coder-cloud.com at which you can easily access your code-server instance. + Securely bind code-server via our cloud service with the passed name. You'll get a URL like + https://hostname-username.cdr.co at which you can easily access your code-server instance. Authorization is done via GitHub. `, beta: true, diff --git a/src/node/coder_cloud.ts b/src/node/coder_cloud.ts index 6727d331..7bca6342 100644 --- a/src/node/coder_cloud.ts +++ b/src/node/coder_cloud.ts @@ -24,7 +24,7 @@ function runAgent(...args: string[]): Promise { agent.on("close", (code) => { if (code !== 0) { rej({ - message: `coder cloud agent exited with ${code}`, + message: `--link agent exited with ${code}`, }) return }