test runner should search fish_path for specs instead of *

This commit is contained in:
Jorge Bucaran 2015-01-21 13:03:35 +09:00
parent 99ea3a6989
commit 4f9a291a97

View File

@ -1,7 +1,7 @@
#!/usr/bin/env fish
set -l result 0
for test in (find * -type f -print | grep "spec.fish")
for test in (find $fish_path -type f -print | grep "spec.fish")
fish $test $argv
or set result 1
end