Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c56004d

Browse files
committed
fix: Remove "CODER_URL" and "CODER_TOKEN"
These aren't being used, so it's best to remove for now. It caused issues with dogfooding from v1 too!
1 parent cf5aca7 commit c56004d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ func Root() *cobra.Command {
9090
workspaceAgent(),
9191
)
9292

93-
cliflag.String(cmd.PersistentFlags(), varURL, "", "CODER_URL", "", "Specify the URL to your deployment.")
94-
cliflag.String(cmd.PersistentFlags(), varToken, "", "CODER_TOKEN", "", "Specify an authentication token.")
93+
cmd.PersistentFlags().String(varURL, "", "Specify the URL to your deployment.")
94+
cmd.PersistentFlags().String(varToken, "", "Specify an authentication token.")
9595
cliflag.String(cmd.PersistentFlags(), varAgentToken, "", "CODER_AGENT_TOKEN", "", "Specify an agent authentication token.")
9696
cliflag.String(cmd.PersistentFlags(), varAgentURL, "", "CODER_AGENT_URL", "", "Specify the URL for an agent to access your deployment.")
9797
cliflag.String(cmd.PersistentFlags(), varGlobalConfig, "", "CODER_CONFIG_DIR", configdir.LocalConfig("coderv2"), "Specify the path to the global `coder` config directory.")

0 commit comments

Comments
 (0)