From: Kai Moritz Date: Mon, 3 Feb 2025 21:02:39 +0000 (+0100) Subject: `.gradle` und `build` zu den Excludes in `COPY.sh` hinzugefügt X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=c794cd3aec972a946d967750dddef36ce4b8f71d;p=demos%2Fkafka%2Ftraining `.gradle` und `build` zu den Excludes in `COPY.sh` hinzugefügt --- diff --git a/COPY.sh b/COPY.sh index e8625493..ea4dddbf 100755 --- a/COPY.sh +++ b/COPY.sh @@ -8,7 +8,7 @@ source BRANCHES.sh git checkout grundlagen/docker mkdir -p $VORLAGEN/grundlagen/docker/ -rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $VORLAGEN/grundlagen/docker/ +rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=.gradle --exclude=build --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $VORLAGEN/grundlagen/docker/ for i in $BRANCHES; do @@ -19,11 +19,11 @@ do vorlage=$(echo $branch |sed -e 's/--vorlage$//') echo "Vorlage: $vorlage" mkdir -p $VORLAGEN/$vorlage/ - rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $VORLAGEN/$vorlage/ + rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=.gradle --exclude=build --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $VORLAGEN/$vorlage/ else echo "Lösung: $branch" mkdir -p $MUSTERLOESUNGEN/$branch/ - rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $MUSTERLOESUNGEN/$branch/ + rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=.gradle --exclude=build --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $MUSTERLOESUNGEN/$branch/ fi done