at main 10 lines 203 B view raw
1#!/bin/bash 2set -e 3cd $(dirname $0) 4if [ $(uname) == 'Darwin' ]; then 5 brew install fish 6else 7 sudo add-apt-repository ppa:fish-shell/release-3 8 sudo apt-get update 9 sudo apt install fish 10fi