-
Notifications
You must be signed in to change notification settings - Fork 4
reDo.sh
Yourself edited this page Sep 19, 2015
·
1 revision
export URI="https://github.com/martinhbramwell"
export TUT="Meteor-CI-Tutorial"
export FILE="archive/master.zip"
cd ~/ci4meteor
rm -fr ${TUT}
rm -fr ${TUT}*.*
echo "Downloading : \n${URI}/${TUT}/${FILE}"
echo " as : ${TUT}.zip"
wget -O ${TUT}.zip ${URI}/${TUT}/${FILE}
unzip ${TUT}.zip
mv ${TUT}-master ${TUT}
cd ${TUT}
cp ../udata.sh .
echo "Ready to run the first script :"
echo " sudo ./Part01_PrepareTheMachine.sh"