Skip to content
Snippets Groups Projects
Commit 27343d8d authored by Simona Vetter's avatar Simona Vetter
Browse files

dim: Remove -s from bash-completion


dim apply auto-adds this now anytime it's needed.

v2: Fixup cat-to-fixup completion

Acked-by: default avatarJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 68b51514
No related branches found
No related tags found
No related merge requests found
......@@ -63,12 +63,8 @@ _dim ()
push-queued|push-fixes|push-next-fixes)
COMPREPLY=( $( compgen -W "-f" -- $cur ) )
;;
cat-to-fixup)
apply-branch)
COMPREPLY=( $( compgen -W "-s $nightly_branches" -- $cur ) )
;;
apply-queued|apply-fixes|apply-next-fixes)
COMPREPLY=( $( compgen -W "-s" -- $cur ) )
cat-to-fixup|apply-branch)
COMPREPLY=( $( compgen -W "$nightly_branches" -- $cur ) )
;;
magic-patch)
if [[ $args == 2 ]]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment