From 99b506b6552ba91a91af4b9714d35eb38bae7dbb Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Feb 07 2018 20:50:04 +0000 Subject: fix broken syntax in bash completion The completion code added in f7d9b56 ("Port fedrepo-req and fedrepo-req-branch to fedpkg", 2017-12-07) missed ';;' separating the request-branch and request-repo patterns. Attempting to source the bash completion script results in an error: $ . /usr/share/bash-completion/completions/fedpkg.bash -bash: /usr/share/bash-completion/completions/fedpkg.bash: line 196: syntax error near unexpected token `)' -bash: /usr/share/bash-completion/completions/fedpkg.bash: line 196: ` request-repo)' Signed-off-by: Todd Zullinger --- diff --git a/conf/bash-completion/fedpkg.bash b/conf/bash-completion/fedpkg.bash index 03fa399..f5a0b14 100644 --- a/conf/bash-completion/fedpkg.bash +++ b/conf/bash-completion/fedpkg.bash @@ -193,6 +193,7 @@ _fedpkg() request-branch) options="--no-git-branch --all-releases" options_string="--sl" + ;; request-repo) options="--exception" options_string="--description --monitor --upstreamurl --summary"