mirror of https://github.com/restic/restic.git
Output password successful on terminal stdout
This removes the conditions that checks if the password is supplied through environment variable or file and outputs password is successful on terminal and when --quiet is not supplied.
This commit is contained in:
parent
55e6003749
commit
a7baea0522
|
@ -132,20 +132,6 @@ func restoreTerminal() {
|
|||
})
|
||||
}
|
||||
|
||||
// shouldOutputPasswordSuccessful returns true if the password is supplied
|
||||
// interactively and the stdout is a terminal.
|
||||
func shouldOutputPasswordSuccessful() bool {
|
||||
if globalOptions.PasswordFile != "" {
|
||||
return false
|
||||
}
|
||||
|
||||
if os.Getenv("RESTIC_PASSWORD") != "" {
|
||||
return false
|
||||
}
|
||||
|
||||
return stdoutIsTerminal()
|
||||
}
|
||||
|
||||
// ClearLine creates a platform dependent string to clear the current
|
||||
// line, so it can be overwritten. ANSI sequences are not supported on
|
||||
// current windows cmd shell.
|
||||
|
@ -340,7 +326,7 @@ func OpenRepository(opts GlobalOptions) (*repository.Repository, error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
if shouldOutputPasswordSuccessful() {
|
||||
if stdoutIsTerminal() {
|
||||
Verbosef("password is correct\n")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue