We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe37cef commit a407108Copy full SHA for a407108
pkg/actions/setup.go
@@ -197,6 +197,7 @@ func newAccountSetup(serverUrl *url.URL) error {
197
// ask user to pick a name for this machine (default to current system name)
198
fmt.Print("Please enter a name for this machine: ")
199
var machineName string
200
+ // need to not use scanln https://stackoverflow.com/questions/43843477/scanln-in-golang-doesnt-accept-whitespace
201
if _, err := fmt.Scanln(&machineName); err != nil {
202
return err
203
}
0 commit comments