From 79703b4ac9f9e969037ade6afcc4a9e8e9572af6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Oct 2015 14:15:35 +1300 Subject: Fix backwards test --- bash/bashrc.d/make.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bash/bashrc.d/make.bash') 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 -- cgit v1.2.3