fisher/functions/__fisher_path_make.fish

17 lines
226 B
Fish

function __fisher_path_make -a path
if test ! -s $path/Makefile -a ! -s $path/makefile
return
end
pushd $path
set -e argv[1]
if not make $argv
popd
return 1
end
popd
end