From b2762a3979aeeae8ac6f84231eea191a89acf4e7 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sat, 27 Aug 2016 19:01:37 -0400 Subject: [PATCH] updated bash tab completion --- bash-tab-completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash-tab-completion b/bash-tab-completion index 706cbb7..830342d 100644 --- a/bash-tab-completion +++ b/bash-tab-completion @@ -4,7 +4,7 @@ _steamguard() COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" - opts="--help --verbose --user --generate-code --encrypt --decrypt" + opts="--help --verbose --maFiles-path" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0