-
Notifications
You must be signed in to change notification settings - Fork 0
/
sync-templates.sh
39 lines (32 loc) · 1021 Bytes
/
sync-templates.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
set -e # bail on errors
GLOB=$1
IS_CI="${CI:-false}"
BASE=$(pwd)
COMMIT_MESSAGE=$(git log -1 --pretty=%B)
for folder in $GLOB; do
[ -d "$folder" ] || continue
cd $BASE
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "chore: update template"
git push origin main
fi
NAME=${folder##*/}
CLONE_DIR="__${NAME}__clone__"
# sync to read-only clones
# clone, delete files in the clone, and copy (new) files over
# this handles file deletions, additions, and changes seamlessly
# note: redirect output to dev/null to avoid any possibility of leaking token
git clone --quiet --depth 1 [email protected]:shadcn/${NAME}.git $CLONE_DIR > /dev/null
cd $CLONE_DIR
find . | grep -v ".git" | grep -v "^\.*$" | xargs rm -rf # delete all files (to handle deletions in monorepo)
cp -r $BASE/$folder/. .
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "$COMMIT_MESSAGE"
git push origin main
fi
cd $BASE
rm -rf $CLONE_DIR
done