Skip to content

Commit 3af00e7

Browse files
committed
fix lint
1 parent c18b449 commit 3af00e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/login.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/hashload/boss/env"
1111
"github.com/hashload/boss/msg"
1212
"github.com/spf13/cobra"
13-
"golang.org/x/crypto/ssh/terminal"
13+
"golang.org/x/term"
1414
)
1515

1616
var removeLogin bool
@@ -74,7 +74,7 @@ func login(removeLogin bool, args []string) {
7474
func getPass(description string) string {
7575
fmt.Print(description + ": ")
7676

77-
bytePassword, err := terminal.ReadPassword(int(syscall.Stdin))
77+
bytePassword, err := term.ReadPassword(int(syscall.Stdin))
7878
if err != nil {
7979
msg.Die("Error on get pass: %s", err)
8080
}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ require (
1515
github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca
1616
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
1717
golang.org/x/sys v0.0.0-20210502180810-71e4cd670f79
18+
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
1819
golang.org/x/text v0.3.3
1920
)
2021

@@ -39,6 +40,5 @@ require (
3940
github.com/spf13/pflag v1.0.3 // indirect
4041
github.com/xanzy/ssh-agent v0.3.0 // indirect
4142
golang.org/x/net v0.0.0-20210326060303-6b1517762897 // indirect
42-
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
4343
gopkg.in/warnings.v0 v0.1.2 // indirect
4444
)

0 commit comments

Comments
 (0)