From df3f3cc0e1e578a3deaa644f7290740866a6457e Mon Sep 17 00:00:00 2001 From: Alex Henning Date: Wed, 13 Aug 2014 11:16:22 -0400 Subject: [PATCH] Updated installer to point to the new location. Change-Id: Id5f11a2952511bb781a4b4b38bcdcac1ec3ae2b0 --- simulation/debs/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simulation/debs/install.sh b/simulation/debs/install.sh index 947e09ecba..11abd31295 100755 --- a/simulation/debs/install.sh +++ b/simulation/debs/install.sh @@ -104,15 +104,15 @@ function install-frcsim { fi # Add FRCSim Repository and Key - if ! echo "deb http://users.wpi.edu/~adhenning/frcsim `lsb_release -cs` main" > /etc/apt/sources.list.d/frcsim-latest.list + if ! echo "deb http://first.wpi.edu/FRC/roborio/release/linux `lsb_release -cs` main" > /etc/apt/sources.list.d/frcsim-latest.list then echo "*** Cannot add FRCSim repository!" 1>&2 install-fail fi - if ! (wget users.wpi.edu/~adhenning/frcsim.key -O - | apt-key add -) + if ! (wget first.wpi.edu/FRC/roborio/wpilib.gpg.key -O - | apt-key add -) then echo "*** Cannot add FRCSim repository key!" 1>&2 - if ! ping users.wpi.edu -c 1 >/dev/null; then + if ! ping first.wpi.edu -c 1 >/dev/null; then echo "*** The package host for FRCSim appears to be down. Try again later." 1>&2 fi install-fail