Skip to content

Commit 40d841c

Browse files
committed
Add Shellcheck error suppression
Suppress: * SC2207, Prefer mapfile or read -a to split command output (or quote to avoid splitting). * SC2016, Expressions don't expand in single quotes, use double quotes for that.
1 parent 130948f commit 40d841c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

share/bash-completion/completions/mech-dump

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _comp_cmd_mech_dump()
33
local cur
44
cur=${COMP_WORDS[COMP_CWORD]}
55

6-
# shellcheck disable=SC2207
6+
# shellcheck disable=SC2207,SC2016
77
COMPREPLY=( $( compgen -W '$(mech-dump --completions)' -- "$cur" ) )
88
} &&
99
complete -F _comp_cmd_mech_dump mech-dump

0 commit comments

Comments
 (0)