File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"github.com/hashload/boss/env"
11
11
"github.com/hashload/boss/msg"
12
12
"github.com/spf13/cobra"
13
- "golang.org/x/crypto/ssh/terminal "
13
+ "golang.org/x/term "
14
14
)
15
15
16
16
var removeLogin bool
@@ -74,7 +74,7 @@ func login(removeLogin bool, args []string) {
74
74
func getPass (description string ) string {
75
75
fmt .Print (description + ": " )
76
76
77
- bytePassword , err := terminal .ReadPassword (int (syscall .Stdin ))
77
+ bytePassword , err := term .ReadPassword (int (syscall .Stdin ))
78
78
if err != nil {
79
79
msg .Die ("Error on get pass: %s" , err )
80
80
}
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ require (
15
15
github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca
16
16
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
17
17
golang.org/x/sys v0.0.0-20210502180810-71e4cd670f79
18
+ golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
18
19
golang.org/x/text v0.3.3
19
20
)
20
21
@@ -39,6 +40,5 @@ require (
39
40
github.com/spf13/pflag v1.0.3 // indirect
40
41
github.com/xanzy/ssh-agent v0.3.0 // indirect
41
42
golang.org/x/net v0.0.0-20210326060303-6b1517762897 // indirect
42
- golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
43
43
gopkg.in/warnings.v0 v0.1.2 // indirect
44
44
)
You can’t perform that action at this time.
0 commit comments