Files
allwpilib/.travis-scripts/install.sh

9 lines
220 B
Bash
Raw Normal View History

2016-05-11 12:24:46 -04:00
#!/bin/bash
if [[ $TRAVIS_OS_NAME != 'osx' ]]; then
2016-05-11 12:24:46 -04:00
# Install custom requirements on Linux
sudo add-apt-repository ppa:wpilib/toolchain -y
sudo apt-get update -q
sudo apt-get install frc-toolchain -y
fi