From a66c8ccb69e7f27467d5b05b15ba9a8042a566d3 Mon Sep 17 00:00:00 2001 From: Carlo Dapor Date: Mon, 10 Oct 2016 01:27:30 +0200 Subject: [PATCH] Missed a double semi-colon at the end of gh-pages:deploy, caught by @anisabboud (#2604) --- packages/angular-cli/utilities/completion.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/angular-cli/utilities/completion.sh b/packages/angular-cli/utilities/completion.sh index 81ff665a793b..907d724eaea4 100644 --- a/packages/angular-cli/utilities/completion.sh +++ b/packages/angular-cli/utilities/completion.sh @@ -30,7 +30,7 @@ if type complete &>/dev/null; then ng) opts=$ng_opts ;; b|build) opts=$build_opts ;; g|generate) opts=$generate_opts ;; - gh-pages:deploy|github-pages:deploy) opts=$github_pages_deploy_opts + gh-pages:deploy|github-pages:deploy) opts=$github_pages_deploy_opts ;; h|help|-h|--help) opts=$help_opts ;; init) opts=$init_opts ;; new) opts=$new_opts ;; @@ -58,7 +58,7 @@ elif type compctl &>/dev/null; then ng) opts=$ng_opts ;; b|build) opts=$build_opts ;; g|generate) opts=$generate_opts ;; - gh-pages:deploy|github-pages:deploy) opts=$github_pages_deploy_opts + gh-pages:deploy|github-pages:deploy) opts=$github_pages_deploy_opts ;; h|help|-h|--help) opts=$help_opts ;; init) opts=$init_opts ;; new) opts=$new_opts ;;