mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $TRAVIS_OS_NAME != 'osx' ]]; then
|
|
# 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
|