From 8eab76ed208e02e3a2e137c35f091eeb75a62dbe Mon Sep 17 00:00:00 2001 From: "Marcel Kapfer (mmk2410)" Date: Sat, 21 May 2016 21:20:00 +0200 Subject: [PATCH] Update script for version 1.4.3: fixes --- update-scripts/1-4-2_1-4-3.sh | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) mode change 100644 => 100755 update-scripts/1-4-2_1-4-3.sh diff --git a/update-scripts/1-4-2_1-4-3.sh b/update-scripts/1-4-2_1-4-3.sh old mode 100644 new mode 100755 index bcac261..47542d5 --- a/update-scripts/1-4-2_1-4-3.sh +++ b/update-scripts/1-4-2_1-4-3.sh @@ -6,11 +6,11 @@ version="1.4.3" new="./rbe-new" echo -n "Downloading version $version from GitLab... " -git clone https://gitlab.com/mmk2410/rangitaki.git "$new" +git clone -q https://gitlab.com/mmk2410/rangitaki.git "$new" if [[ $1 == "--debug" ]]; then cd $new - git checkout master + git checkout -q master cd ../ fi echo "done" @@ -26,13 +26,6 @@ mv $new/src/coffee/app.coffee ./src/coffee/ mv $new/src/sass-themes/nextDESIGN.sass ./src/sass-themes/ echo "done" -echo -n "Updating extensions... " -rm ./themes/material-light.css -rm ./themes/material-dark.css -rm ./themes/background-img.css -mv $new/themes/* ./themes/ -echo "done" - echo -n "Updating RCC... " rm -rf ./rcc mv $new/rcc ./ @@ -50,9 +43,9 @@ mv $new/bin/ ./ echo "done" echo -n "Updating themes... " -rm ./themes/material-light.css -rm ./themes/material-dark.css -rm ./themes/background-img.css +rm ./themes/material-light.css* +rm ./themes/material-dark.css* +rm ./themes/background-img.css* mv $new/themes/* ./themes/ echo "done"