`COPY.sh` von if/else auf case umgeschrieben
authorKai Moritz <kai@juplo.de>
Sat, 15 Mar 2025 15:59:09 +0000 (16:59 +0100)
committerKai Moritz <kai@juplo.de>
Sat, 15 Mar 2025 16:02:06 +0000 (17:02 +0100)
COPY.sh

diff --git a/COPY.sh b/COPY.sh
index 67a8fe3..1c30b43 100755 (executable)
--- a/COPY.sh
+++ b/COPY.sh
@@ -26,17 +26,19 @@ do
   else
     git checkout $branch
   fi
-  if [[ $branch =~ "--vorlage" ]]
-  then
+  case $branch in
+  *--vorlage)
     vorlage=$(echo $branch |sed -e 's/--vorlage$//')
     echo "Vorlage: $vorlage"
     mkdir -p $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=.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
+    ;;
+  esac
 done
 
 git checkout scripting