Neues Skript `TAG.sh` in `COPY.sh` ergänzt
authorKai Moritz <kai@juplo.de>
Wed, 11 Dec 2024 18:28:34 +0000 (19:28 +0100)
committerKai Moritz <kai@juplo.de>
Wed, 11 Dec 2024 19:41:47 +0000 (20:41 +0100)
COPY.sh

diff --git a/COPY.sh b/COPY.sh
index 7ddcc73..cea6046 100755 (executable)
--- 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