From 97b30dc97f05101b4a7bb7a59a6e9a04fc7d50bd Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Tue, 16 Feb 2016 12:06:25 +0900 Subject: [PATCH] Fix bug introduced in 83b84b causing make to not get called. --- functions/__fisher_path_make.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/__fisher_path_make.fish b/functions/__fisher_path_make.fish index 657383d..0b42bf8 100644 --- a/functions/__fisher_path_make.fish +++ b/functions/__fisher_path_make.fish @@ -1,5 +1,5 @@ function __fisher_path_make -a path - if test ! -s $path/Makefile -o ! -s $path/makefile + if test ! -s $path/Makefile -a ! -s $path/makefile return end