Skip to content

Commit

Permalink
chore: fix moving dot folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ccloli committed Dec 19, 2023
1 parent 90911a3 commit b186fb9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/daily-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ jobs:
# reset related files to upstream
git restore --source upstream/main apps/playground
rm -rf ./src ./config
mv apps/playground/{.*,*} ./ -f -v
mv apps/playground/{.[^.]*,*} ./ -f -v
if [[ $? -gt 0 ]]; then
cp apps/playground/{.[^.]*,*} ./ -r -v
fi
rm -rf ./apps
# apply changes
Expand Down

0 comments on commit b186fb9

Please sign in to comment.