mirror of
https://github.com/rclone/rclone.git
synced 2025-01-19 08:32:45 +08:00
Add disclaimer about generated passwords being stored in an obscured format
This commit is contained in:
parent
6301e15b79
commit
990919f268
|
@ -770,7 +770,9 @@ func ChooseOption(o *fs.Option, name string) string {
|
||||||
}
|
}
|
||||||
password = base64.RawURLEncoding.EncodeToString(pw)
|
password = base64.RawURLEncoding.EncodeToString(pw)
|
||||||
fmt.Printf("Your password is: %s\n", password)
|
fmt.Printf("Your password is: %s\n", password)
|
||||||
fmt.Printf("Use this password?\n")
|
fmt.Printf("Use this password? Please note that an obscured version of this \npassword (and not the " +
|
||||||
|
"password itself) will be stored under your \nconfiguration file, so keep this generated password " +
|
||||||
|
"in a safe place.\n")
|
||||||
if Confirm() {
|
if Confirm() {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user