From 56433729c6080c6e44334ba9d9c1bf2cbeea89da Mon Sep 17 00:00:00 2001 From: Slater-Victoroff Date: Fri, 31 May 2013 15:09:13 -0400 Subject: [PATCH] Realized an issue requiring us to remove raring support, fixed a couple more bugs --- scripts/create-dev-env.sh | 7 +++++-- scripts/install-system-req.sh | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/create-dev-env.sh b/scripts/create-dev-env.sh index 0b8480e3fc..9c191a55a7 100755 --- a/scripts/create-dev-env.sh +++ b/scripts/create-dev-env.sh @@ -227,13 +227,16 @@ case `uname -s` in distro=`lsb_release -cs` case $distro in - wheezy|jessie|maya|olivia|nadia|precise|quantal|raring) + wheezy|jessie|maya|olivia|nadia|precise|quantal) sudo apt-get install git ;; - squeeze|lisa|katya|oneiric|natty) + squeeze|lisa|katya|oneiric|natty|raring) warning "It seems like you're using $distro which has been deprecated. While we don't technically support this release, the install script will probably still work. + Raring requires an install of rvm to work correctly as the raring + package manager does not yet include a package for rvm + Press return to continue or control-C to abort" read dummy sudo apt-get install git diff --git a/scripts/install-system-req.sh b/scripts/install-system-req.sh index 612266b5f0..8a7c98e38c 100755 --- a/scripts/install-system-req.sh +++ b/scripts/install-system-req.sh @@ -44,6 +44,7 @@ case `uname -s` in sudo apt-get -y install gfortran sudo apt-get -y install graphviz libgraphviz-dev graphviz-dev sudo apt-get -y install libatlas-dev libblas-dev + sudo apt-get -y install ruby-rvm # install packages listed in APT_PKGS_FILE cat $APT_PKGS_FILE | xargs sudo apt-get -y install ;;