From 435f481dc9dd2d5fe3ffdff3be31b064dbfa1e55 Mon Sep 17 00:00:00 2001 From: Yossi Date: Tue, 24 Jan 2017 22:20:57 +0200 Subject: [PATCH] use zipped package instead of git clone for Cardigan --- stage2/01-sys-tweaks/01-run.sh | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/stage2/01-sys-tweaks/01-run.sh b/stage2/01-sys-tweaks/01-run.sh index ded2657..fdd9547 100755 --- a/stage2/01-sys-tweaks/01-run.sh +++ b/stage2/01-sys-tweaks/01-run.sh @@ -139,30 +139,20 @@ sudo dpkg -i node_latest_armhf.deb echo "========== Install Dride-core [Cardigan] ============" cd /home -sudo git clone --depth 1 --recursive https://github.com/CardiganCam/Cardigan.git -cd Cardigan +# https://github.com/dride/Cardigan/archive/0.2.zip +wget -c -O "cardigan-0.2.zip" "https://github.com/dride/Cardigan/releases/download/0.2/Cardigan.zip" +sudo apt-get install unzip +unzip -q -n "cardigan-0.2.zip" + +sudo rm cardigan-0.2.zip + # make the video dir writable -sudo chmod 777 -R modules/video/ +sudo chmod 777 -R /home/Cardigan/modules/video/ # clone dride-ws -cd /home/Cardigan -sudo rm -R dride-ws - -sudo mkdir dride-ws -cd dride-ws -wget -c -O "dride-ws-0.1.4.zip" "https://github.com/dride/dride-ws/archive/0.1.4.zip" -sudo apt-get install unzip -unzip -q -n "dride-ws-0.1.4.zip" - -sudo rm dride-ws-0.1.4.zip - -cd dride-ws-0.1.4 -find . -maxdepth 1 -exec mv {} .. \; - cd /home/Cardigan/dride-ws -sudo rm dride-ws-0.1.4 -sudo rm npmbox.npmbox + sudo npm i cd /