mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
9 lines
157 B
Fish
Executable File
9 lines
157 B
Fish
Executable File
#!/usr/bin/env fish
|
|
|
|
set -l result 0
|
|
for test in (find $fish_path -type f -print | grep "spec.fish")
|
|
fish $test $argv
|
|
or set result 1
|
|
end
|
|
exit $result
|