fix: force checkout of `gh-pages` branch (#544)

When using the theme starter, which uses a git submodule,
assets loaded from that submodule are "untracked" files in the pages branch working tree.
The build can fail at this line due to Git, saying "the following untracked working tree files would be overwritten by checkout".

Adding `-f` forces the checkout, overwriting all files.
The other deploy steps then take over and rewrite the files as needed.
This commit is contained in:
Galen Rice 2022-04-02 07:22:48 -04:00 committed by GitHub
parent 156c02a91a
commit 5402523ae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ setup_gh() {
_no_pages_branch=true
git checkout -b "$PAGES_BRANCH"
else
git checkout "$PAGES_BRANCH"
git checkout -f "$PAGES_BRANCH"
fi
}