aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-10-21 14:15:35 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-10-21 14:15:35 +1300
commit79703b4ac9f9e969037ade6afcc4a9e8e9572af6 (patch)
tree196b3798354a1f99776f15f6716719a156cceb8b /bash
parentFlatten expansion for ancient Bash (diff)
downloaddotfiles-79703b4ac9f9e969037ade6afcc4a9e8e9572af6.tar.gz
dotfiles-79703b4ac9f9e969037ade6afcc4a9e8e9572af6.zip
Fix backwards test
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc.d/make.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/make.bash b/bash/bashrc.d/make.bash
index 8580572e..ea0ccf1d 100644
--- a/bash/bashrc.d/make.bash
+++ b/bash/bashrc.d/make.bash
@@ -2,7 +2,7 @@
_make() {
# Bail if no legible Makefile
- [[ ! -r Makefile ]] || return 1
+ [[ -r Makefile ]] || return 1
# Build a list of targets by parsing the Makefile
local -a targets tokens