From: Kai Moritz Date: Wed, 11 Dec 2024 18:28:34 +0000 (+0100) Subject: Neues Skript `TAG.sh` in `COPY.sh` ergänzt X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=01b1b689ef5b550d5c969d7cc736e4b4cd071eda;p=demos%2Fkafka%2Ftraining Neues Skript `TAG.sh` in `COPY.sh` ergänzt --- diff --git a/COPY.sh b/COPY.sh index 7ddcc733..cea60468 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 . $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/ 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 . $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/ 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 . $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/ fi done