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
Copy file name to clipboardExpand all lines: cli/start.go
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ func start() *cobra.Command {
63
63
traceDatadogbool
64
64
secureAuthCookiebool
65
65
sshKeygenAlgorithmRawstring
66
+
spookybool
66
67
)
67
68
68
69
root:=&cobra.Command{
@@ -76,7 +77,7 @@ func start() *cobra.Command {
76
77
defertracer.Stop()
77
78
}
78
79
79
-
printLogo(cmd)
80
+
printLogo(cmd,spooky)
80
81
listener,err:=net.Listen("tcp",address)
81
82
iferr!=nil {
82
83
returnxerrors.Errorf("listen %q: %w",address,err)
@@ -394,6 +395,8 @@ func start() *cobra.Command {
394
395
cliflag.BoolVarP(root.Flags(),&secureAuthCookie,"secure-auth-cookie","","CODER_SECURE_AUTH_COOKIE",false,"Specifies if the 'Secure' property is set on browser session cookies")
395
396
cliflag.StringVarP(root.Flags(),&sshKeygenAlgorithmRaw,"ssh-keygen-algorithm","","CODER_SSH_KEYGEN_ALGORITHM","ed25519","Specifies the algorithm to use for generating ssh keys. "+
396
397
`Accepted values are "ed25519", "ecdsa", or "rsa4096"`)