From 01b1b689ef5b550d5c969d7cc736e4b4cd071eda Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 11 Dec 2024 19:28:34 +0100 Subject: [PATCH] =?utf8?q?Neues=20Skript=20`TAG.sh`=20in=20`COPY.sh`=20erg?= =?utf8?q?=C3=A4nzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- COPY.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.20.1