Skip to content

Commit

Permalink
fix: Try doing a full clone
Browse files Browse the repository at this point in the history
Seems like applying the filter prevents `clone` from resulting in being on `master`
  • Loading branch information
dangotbanned committed Jan 10, 2025
1 parent 58cc591 commit 27ce0e9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tools/sync_website.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@

DOC_BUILD_INFO: Path = DOC_HTML_DIR / ".buildinfo"


CMD_CLONE = f"git clone --filter=blob:none {DOC_REPO_URL}"
"""Partial clone, as we only keep ``./.git/**``."""

CMD_CLONE = "git", "clone", DOC_REPO_URL
CMD_PULL = "git pull"
CMD_HEAD_HASH = "git rev-parse HEAD"
CMD_ADD = "git", "add", ".", "--all", "--force"
Expand Down

0 comments on commit 27ce0e9

Please sign in to comment.