summaryrefslogtreecommitdiff
path: root/data/shell-completions/bash
diff options
context:
space:
mode:
Diffstat (limited to 'data/shell-completions/bash')
-rw-r--r--data/shell-completions/bash/meson2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/shell-completions/bash/meson b/data/shell-completions/bash/meson
index 88dc15ec3..0814342db 100644
--- a/data/shell-completions/bash/meson
+++ b/data/shell-completions/bash/meson
@@ -30,7 +30,7 @@ _subprojects() {
local COMPREPLY=()
_filedir
# _filedir for whatever reason can't reason about symlinks, so -d will them.
- # Filter out wrap files with this expresion.
+ # Filter out wrap files with this expression.
IFS=$'\n' echo "${COMPREPLY[*]}" | grep -vE '\.wrap$' | xargs
popd &>/dev/null
}