mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
Do not fail if Makefile is missing or empty w/ support for fish 2.1.2
This commit is contained in:
parent
68beef51e9
commit
83b84b7494
@ -1,14 +1,16 @@
|
||||
function __fisher_path_make -a path
|
||||
if test -s $path/Makefile -o -s $path/makefile
|
||||
pushd $path
|
||||
|
||||
set -e argv[1]
|
||||
|
||||
if not make $argv
|
||||
popd
|
||||
return 1
|
||||
end
|
||||
|
||||
popd
|
||||
if test ! -s $path/Makefile -o ! -s $path/makefile
|
||||
return
|
||||
end
|
||||
|
||||
pushd $path
|
||||
|
||||
set -e argv[1]
|
||||
|
||||
if not make $argv
|
||||
popd
|
||||
return 1
|
||||
end
|
||||
|
||||
popd
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user