Updating bootstrap script to point to public repo.

This commit is contained in:
Nick Winter 2014-01-03 10:42:37 -08:00
parent 6009df26de
commit 9407347003

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
repositoryUrl=https://github.com/nwinter/codecombat.git repositoryUrl=https://github.com/codecombat/codecombat.git
deps=( git python ) deps=( git python )
function checkDependencies { #usage: checkDependencies [name of dependency array] [name of error checking function] function checkDependencies { #usage: checkDependencies [name of dependency array] [name of error checking function]
declare -a dependencyArray=("${!1}") declare -a dependencyArray=("${!1}")
@ -32,7 +32,6 @@ function checkIsRoot {
#checkIsRoot #checkIsRoot
checkDependencies deps[@] basicDependenciesErrorHandling checkDependencies deps[@] basicDependenciesErrorHandling
#install git repository #install git repository
git clone https://github.com/schmatz/cocopractice.git coco git clone https://github.com/codecombat/codecombat.git coco
echo "CHANGE LOCATION OF GIT REPO BEFORE RELEASE OR IT WILL NOT WORK!"
#python ./coco/scripts/devSetup/setup.py #python ./coco/scripts/devSetup/setup.py
echo "Now copy and paste 'sudo python ./coco/scripts/devSetup/setup.py' into the terminal!" echo "Now copy and paste 'sudo python ./coco/scripts/devSetup/setup.py' into the terminal!"