Skip to content

Commit dd991e4

Browse files
committed
chore(ent): update to nx 21 and ng 20
1 parent 9bc5202 commit dd991e4

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

update.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ while read -r BRANCH; do
1313
echo "===> Wechsel zu $BRANCH"
1414
git checkout "$BRANCH"
1515

16-
# Prüfen, ob Commit schon im Branch enthalten ist
17-
if git cherry "$BRANCH" "$FIXED_COMMIT" | grep -q '^-'; then
18-
echo "⏩ Commit bereits in $BRANCH – überspringe."
19-
continue
20-
fi
21-
2216
echo "===> Cherry-Pick von $FIXED_COMMIT"
23-
git cherry-pick "$FIXED_COMMIT"
17+
# git cherry-pick "$FIXED_COMMIT"
18+
cp /tmp/package.json package.json
19+
cp /tmp/pre-commit .husky/pre-commit
20+
git add .
21+
git commit -m "chore(ent): update to nx 21 and ng 20"
22+
2423

2524
done < "$BRANCH_LIST"
2625

0 commit comments

Comments
 (0)