Skip to content

Commit

Permalink
ci: fix current dir "." in find
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Mar 1, 2024
1 parent a6821c6 commit fed8500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sudo-bot/create-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cleanGhPages() {
git checkout gh-pages
git ls-files ./ | xargs -r -n 1 rm -v
# Delete remaining files
find ./ -not -path '*/.git*' -not -path '*/.github*' -print -delete
find ./ -not -path ./ -not -path '*/.git*' -not -path '*/.github*' -print -delete
}

moveBuildFilesToCurrentDir() {
Expand Down

0 comments on commit fed8500

Please sign in to comment.