mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 04:45:15 +00:00
don't load password when autocompleting CLI commands
This commit is contained in:
parent
d6917c7e00
commit
cd09ef4614
8
changelog/unreleased/issue-4516
Normal file
8
changelog/unreleased/issue-4516
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
Bugfix: Do not try to load password on command line autocomplete
|
||||||
|
|
||||||
|
The command line autocompletion previously tried to load the repository
|
||||||
|
password. This could cause the autocompletion not to work. Now, this step gets
|
||||||
|
skipped.
|
||||||
|
|
||||||
|
https://github.com/restic/restic/issues/4516
|
||||||
|
https://github.com/restic/restic/pull/4526
|
@ -80,7 +80,7 @@ The full documentation can be found at https://restic.readthedocs.io/ .
|
|||||||
// user for authentication).
|
// user for authentication).
|
||||||
func needsPassword(cmd string) bool {
|
func needsPassword(cmd string) bool {
|
||||||
switch cmd {
|
switch cmd {
|
||||||
case "cache", "generate", "help", "options", "self-update", "version":
|
case "cache", "generate", "help", "options", "self-update", "version", "__complete":
|
||||||
return false
|
return false
|
||||||
default:
|
default:
|
||||||
return true
|
return true
|
||||||
|
Loading…
Reference in New Issue
Block a user