mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
54c9c3156c
golang.org/x/crypto/ssh/terminal is deprecated in favor of golang.org/x/term, see https://pkg.go.dev/golang.org/x/crypto/ssh/terminal The latter also supports ReadPassword on solaris, so enable the respective functionality in fs/config for solaris as well.
13 lines
294 B
Go
13 lines
294 B
Go
// ReadPassword for OSes which are not supported by golang.org/x/term
|
|
// See https://github.com/golang/go/issues/14441 - plan9
|
|
|
|
//go:build plan9
|
|
// +build plan9
|
|
|
|
package config
|
|
|
|
// ReadPassword reads a password with echoing it to the terminal.
|
|
func ReadPassword() string {
|
|
return ReadLine()
|
|
}
|