mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Fix apt-get update -q causing build to fail (#20)
`sudo apt-get update -q` can fail a site doesn't respond. This is the solution proposed here: Related https://github.com/travis-ci/travis-ci/issues/5221
This commit is contained in:
@@ -4,7 +4,7 @@ language: java
|
|||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- sudo add-apt-repository ppa:wpilib/toolchain -y
|
- sudo add-apt-repository ppa:wpilib/toolchain -y
|
||||||
- sudo apt-get update -q
|
- sudo apt-get update -q || true
|
||||||
- sudo apt-get install frc-toolchain -y
|
- sudo apt-get install frc-toolchain -y
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user