Skip to content

remove references of "coder cloud" #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions internal/cmd/bind.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (c *bindCmd) Spec() cli.CommandSpec {
return cli.CommandSpec{
Name: "bind",
Usage: "[NAME]",
Desc: "Bind a server to Coder Cloud. A name will be generated from the hostname if one is not provided.",
Desc: "Bind a server to --link. A name will be generated from the hostname if one is not provided.",
}
}

Expand Down Expand Up @@ -109,11 +109,11 @@ func (c *bindCmd) Run(fl *pflag.FlagSet) {
proxy := func() {
err = agent.Proxy(ctx)
if err != nil {
flog.Error("Connection to Coder-Cloud disrupted, re-establishing connection: %v", err.Error())
flog.Error("Connection disrupted, re-establishing connection: %v", err.Error())
}
}

flog.Info("Proxying code-server to Coder Cloud, you can access your IDE at %v", url)
flog.Info("Proxying code-server, you can access your IDE at %v", url)

proxy()

Expand Down