aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-01 02:27:55 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-01 02:27:55 +1300
commitdcf821666fbe32735e220688956268ee40e2af17 (patch)
treed5c70231d1cda246a28412f0d4f4699b116b4ad6
parentRemove needless line breaks from git completion (diff)
downloaddotfiles-dcf821666fbe32735e220688956268ee40e2af17.tar.gz
dotfiles-dcf821666fbe32735e220688956268ee40e2af17.zip
Remove unneeded quoting in case statement
-rw-r--r--bash/bash_completion.d/find.bash2
1 files changed, 1 insertions, 1 deletions
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)