Do not fail if Makefile is missing or empty w/ support for fish 2.1.2

This commit is contained in:
Jorge Bucaran 2016-02-16 10:43:11 +09:00 committed by Jorge Bucaran
parent 2162f34d90
commit 8468d70045

View file

@ -1,5 +1,8 @@
function __fisher_path_make -a path
if test -s $path/Makefile -o -s $path/makefile
if test ! -s $path/Makefile -o ! -s $path/makefile
return
end
pushd $path
set -e argv[1]
@ -10,5 +13,4 @@ function __fisher_path_make -a path
end
popd
end
end