aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/bash_completion.d/make.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bash_completion.d/make.bash b/bash/bash_completion.d/make.bash
index 2527d145..567a2ec0 100644
--- a/bash/bash_completion.d/make.bash
+++ b/bash/bash_completion.d/make.bash
@@ -23,10 +23,10 @@ _make() {
# Match expected format
case $line in
- # Has no equals sign anywhere
- (*=*) continue ;;
# First char not a tab
($'\t'*) continue ;;
+ # Has no equals sign anywhere
+ (*=*) continue ;;
# Has a colon on the line
(*:*) ;;
# Skip anything else