Fixed first stage bugs

This commit is contained in:
Slater-Victoroff
2013-05-31 10:35:26 -04:00
parent b2cd6915e4
commit 49ed93a4e6
2 changed files with 6 additions and 7 deletions

View File

@@ -227,10 +227,8 @@ case `uname -s` in
distro=`lsb_release -cs`
case $distro in
wheezy|jessie|maya|olivia|nadia|natty|precise|quantal|raring)
sudo apt-get install git
;;
case $distro in
wheezy|jessie|maya|olivia|nadia|natty|precise|quantal|raring)
sudo apt-get install git ;;
squeeze|lisa|katya|oneiric|natty)
warning "It seems like you're using $distro which has been deprecated.
While we don't technically support this release, the install
@@ -240,6 +238,7 @@ case `uname -s` in
read dummy
sudo apt-get install git
;;
*)
error "Unsupported distribution - $distro"
exit 1
@@ -287,7 +286,7 @@ esac
clone_repos
# Sanity check to make sure the repo layout hasn't changed
if [[ -d $BASE/edx-platform/scripts]]; then
if [[ -d $BASE/edx-platform/scripts ]]; then
output "Installing system-level dependencies"
bash $BASE/edx-platform/scripts/install-system-req.sh
else