Skip to content

Commit d79e045

Browse files
committed
completion/bash: fix the completion of lstopo --palette
Signed-off-by: Brice Goglin <[email protected]>
1 parent 5f0269a commit d79e045

File tree

1 file changed

+1
-1
lines changed
  • contrib/completion/bash

1 file changed

+1
-1
lines changed

contrib/completion/bash/hwloc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ _lstopo() {
136136
COMPREPLY=( "<line of text>" "" )
137137
;;
138138
--palette)
139-
COMPREPLY=( `compgen -W "grey" "greyscale" "default" "colors" "white" "none" -- "$cur"` )
139+
COMPREPLY=( `compgen -W "grey greyscale default colors white none" -- "$cur"` )
140140
;;
141141
--binding-color | --disallowed-color | --top-color)
142142
COMPREPLY=( `compgen -W "none <#rrggbb>" -- "$cur"` )

0 commit comments

Comments
 (0)