From dcf821666fbe32735e220688956268ee40e2af17 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 1 Dec 2018 02:27:55 +1300 Subject: Remove unneeded quoting in case statement --- bash/bash_completion.d/find.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bash_completion.d/find.bash b/bash/bash_completion.d/find.bash index 85cadfaf..7e2ae9c3 100644 --- a/bash/bash_completion.d/find.bash +++ b/bash/bash_completion.d/find.bash @@ -64,7 +64,7 @@ _find() { # Otherwise, look at the word *before* this one to figure out what to # complete - case "${COMP_WORDS[COMP_CWORD-1]}" in + case ${COMP_WORDS[COMP_CWORD-1]} in # Args to -exec and -execdir should be commands (-exec|-execdir) -- cgit v1.2.3