From d533f79cc2db507d460ca9eaad415a171b6c04b5 Mon Sep 17 00:00:00 2001 From: harshadyeola Date: Wed, 22 Oct 2014 19:02:57 +0530 Subject: [PATCH] autocompletion for ee site update --password --- config/bash_completion.d/ee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bash_completion.d/ee b/config/bash_completion.d/ee index 7015fc94..d9244a3a 100644 --- a/config/bash_completion.d/ee +++ b/config/bash_completion.d/ee @@ -115,7 +115,7 @@ function EE_AUTO() if [ "$PREVIOUS2" = "create" ]; then COMPREPLY=( $( compgen -W "--html --php --mysql --wp --wpsubdir --wpsubdomain" -- $CURRENT ) ) elif [ "$PREVIOUS2" = "update" ]; then - COMPREPLY=( $( compgen -W "--php --mysql --wp --wpsubdir --wpsubdomain" -- $CURRENT ) ) + COMPREPLY=( $( compgen -W "--password --php --mysql --wp --wpsubdir --wpsubdomain" -- $CURRENT ) ) elif [ "$PREVIOUS2" = "delete" ]; then COMPREPLY=( $( compgen -W "--db --all --files --no-prompt" -- $CURRENT ) ) fi