mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
854493489c
Unfortunately we can't use docker anymore in order to support automatic build on OSX.
17 lines
321 B
Bash
Executable File
17 lines
321 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
set -o errexit
|
|
set -o nounset
|
|
#set -o xtrace
|
|
|
|
# Return if we are not in a Pull Request
|
|
if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
|
|
sudo apt-add-repository -y ppa:fish-shell/release-2
|
|
sudo apt-get update
|
|
sudo apt-get install -y fish
|
|
else
|
|
brew update
|
|
brew install fish tree
|
|
fi
|