X-Git-Url: https://git.danix.xyz/?p=lxqt-slackware.git;a=blobdiff_plain;f=DOWNLOAD.sh;h=044e10008b4df78b4b800aaec63937476fd96cd9;hp=3303fd292127b69110c5182dc3d679ce7c27a0b5;hb=HEAD;hpb=4201a7406a82c065042851b629e9925c4f9ce20b diff --git a/DOWNLOAD.sh b/DOWNLOAD.sh index 3303fd2..044e100 100755 --- a/DOWNLOAD.sh +++ b/DOWNLOAD.sh @@ -1,7 +1,7 @@ #! /bin/bash # Download the superproject and all submodules for LXQT -# LXQT VERSION 0.15.0 +# LXQT VERSION 0.16.0 set -e @@ -25,10 +25,13 @@ $GIT submodule init || echo "error initializing submodules" >> $ERROR_LOG # checkout every submodule $GIT submodule update --remote --rebase || echo "error during checkout of submodules" >> $ERROR_LOG +# return to main directory +cd $CWD + # we grab the module's version numbers before deleting everything git related -sh GRAB_VERSION.sh $SRCDIR +sh ${CWD}/GRAB_VERSION.sh $SRCDIR # we are done with git, so let's cleanup from all the unwanted git folders and files -find . -name '.git*' -mindepth 1 -exec rm -rfv '{}' \; || echo "error during removal of git files from source" >> $ERROR_LOG +find $SRCDIR -name '.git*' -mindepth 1 -exec rm -rfv '{}' \; || echo "error during removal of git files from source" >> $ERROR_LOG # ALL DONE