Skip to content

Commit c1a9054

Browse files
authored
build: fix bug in starter sync script that was preventing stable release publishing (#839)
1 parent ac117e6 commit c1a9054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/sync-repo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ for folder in $GLOB; do
2525
CLONE_DIR="__${NAME}__clone__"
2626

2727
# Note: redirect output to dev/null to avoid any possibility of leaking token
28-
git clone --quiet --depth 1 --branch ${BRANCH} ${REPO}${NAME}.git $CLONE_DIR > /dev/null
28+
git clone --quiet --branch ${BRANCH} ${REPO}${NAME}.git $CLONE_DIR > /dev/null
2929
cd $CLONE_DIR
3030

3131
# Delete all files (to handle deletions in monorepo)

0 commit comments

Comments
 (0)