Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
chore: no quiet (WIP)
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
  • Loading branch information
shanduur committed Jun 3, 2024
1 parent 55a6c7a commit c7363be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ def is_initial() -> bool:
"""
logger.info("fetching gh-pages from origin")
subprocess.run(
["git", "fetch", "origin", "gh-pages"],
["git", "fetch", "origin", "refs/heads/gh-pages"],
stdout=sys.stdout,
stderr=sys.stderr,
)

logger.info("getting ref of gh-pages")
rc = subprocess.run(
["git", "show-ref", "--quiet", "refs/heads/gh-pages"],
["git", "show-ref", "refs/heads/gh-pages"],
stdout=sys.stdout,
stderr=sys.stderr,
)
Expand Down

0 comments on commit c7363be

Please sign in to comment.