You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/tests/run.fish

17 lines
244 B
Fish

#!/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