diff options
Diffstat (limited to 'bash-completion')
-rwxr-xr-x | bash-completion/mgarepo | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bash-completion/mgarepo b/bash-completion/mgarepo index 872d68f..c6a335c 100755 --- a/bash-completion/mgarepo +++ b/bash-completion/mgarepo @@ -11,7 +11,7 @@ _mgarepo_actions() { COMPREPLY=( $( compgen -W 'co ci sync \ submit putsrpm getspec rpmlog getsrpm maintdb create changed \ - authoremail switch upload del up obsolete' -- $cur ) ) + authoremail switch markrelease upload del up obsolete' -- $cur ) ) } _mgarepo() @@ -65,6 +65,9 @@ _mgarepo() changed) options="-a -s -M" ;; + markrelease) + options="-f -r -v -n" + ;; obsolete) options="-m" ;; |