mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-11 07:10:29 +00:00
854493489c
Unfortunately we can't use docker anymore in order to support automatic build on OSX.
17 lines
244 B
Fish
Executable File
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
|