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"