oh-my-fish/tests/run.fish
Bruno Pinto 854493489c Run tests on Travis osx and linux machines
Unfortunately we can't use docker anymore in order to support automatic
build on OSX.
2015-12-23 12:11:56 +00:00

17 lines
244 B
Fish
Executable File

#!/usr/bin/env fish
# TODO: This is only a basic draft.
set -l return_code 0
set commands "omf help" "omf doctor" "omf install apt"
for cmd in $commands
echo \$ $cmd
if not eval $cmd
set return_code 1
end;
end;
exit $return_code