mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-11-22 10:07:57 +08:00
8 lines
180 B
Bash
Executable File
8 lines
180 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
|
|
sudo add-apt-repository -y ppa:git-core/ppa
|
|
sudo apt-get update
|
|
sudo apt-get install --only-upgrade -y git
|
|
fi
|