mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-07 00:25:17 +08:00
27 lines
463 B
Bash
Executable File
27 lines
463 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
if [[ $FISH_RELEASE = "brew" ]]; then
|
|
brew update
|
|
brew install fish
|
|
else
|
|
if [[ $FISH_RELEASE == "4" ]]; then
|
|
REPO_PPA="ppa:fish-shell/beta-4"
|
|
else
|
|
REPO_PPA="ppa:fish-shell/release-3"
|
|
fi
|
|
|
|
if [[ $FISH_RELEASE != "stock" ]]; then
|
|
sudo apt-add-repository -y $REPO_PPA
|
|
fi
|
|
|
|
sudo apt-cache policy fish
|
|
sudo apt-get update
|
|
sudo apt-get install -y fish
|
|
fi
|
|
|
|
fish --version
|