diff --git a/scripts/patch.sh b/scripts/patch.sh index b89d6eb4..6b0fa23f 100755 --- a/scripts/patch.sh +++ b/scripts/patch.sh @@ -6,6 +6,8 @@ shopt -s nullglob . "$GLUONDIR"/scripts/modules.sh for module in $GLUON_MODULES; do + echo "--- Patching module '$module' ---" + cd "$GLUONDIR"/$module git checkout -B patching base diff --git a/scripts/update-patches.sh b/scripts/update-patches.sh index 4c9eaa95..cfdeb58e 100755 --- a/scripts/update-patches.sh +++ b/scripts/update-patches.sh @@ -6,6 +6,8 @@ shopt -s nullglob . "$GLUONDIR"/scripts/modules.sh for module in $GLUON_MODULES; do + echo "--- Updating patches for module '$module' ---" + rm -f "$GLUONDIR"/patches/$module/*.patch mkdir -p "$GLUONDIR"/patches/$module diff --git a/scripts/update.sh b/scripts/update.sh index fa5f4316..86c69628 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -5,6 +5,7 @@ set -e . "$GLUONDIR"/scripts/modules.sh for module in $GLUON_MODULES; do + echo "--- Updating module '$module' ---" var=$(echo $module | tr '[:lower:]/' '[:upper:]_') eval repo=\${${var}_REPO} eval branch=\${${var}_BRANCH}