You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.PersistentFlags().String(varURL, "", "Specify the URL to your deployment.")
145
-
cliflag.BoolVarP(cmd.PersistentFlags(), &varSuppressVersion, noVersionCheckFlag, "", envNoVersionCheck, false, "Suppress warning when client and server versions do not match.")
143
+
cliflag.Bool(cmd.PersistentFlags(), varNoVersionCheck, "", envNoVersionCheck, false, "Suppress warning when client and server versions do not match.")
146
144
cliflag.String(cmd.PersistentFlags(), varToken, "", envSessionToken, "", fmt.Sprintf("Specify an authentication token. For security reasons setting %s is preferred.", envSessionToken))
147
145
cliflag.String(cmd.PersistentFlags(), varAgentToken, "", "CODER_AGENT_TOKEN", "", "Specify an agent authentication token.")
148
146
_=cmd.PersistentFlags().MarkHidden(varAgentToken)
@@ -153,7 +151,7 @@ func Root() *cobra.Command {
153
151
_=cmd.PersistentFlags().MarkHidden(varForceTty)
154
152
cmd.PersistentFlags().Bool(varNoOpen, false, "Block automatically opening URLs in the browser.")
0 commit comments