fine……

This commit is contained in:
shenjack 2024-04-20 22:46:53 +08:00
parent 71347c5484
commit df15584b62
Signed by: shenjack
GPG Key ID: 7B1134A979775551

View File

@ -8,7 +8,8 @@ ON_CF = os.getenv("CF_PAGES") == "1"
if ON_CF: if ON_CF:
print("Running on Cloudflare Pages, trying to git fetch --all") print("Running on Cloudflare Pages, trying to git fetch --all")
run(["git", "fetch", "--all"], check=False) result = run(["git", "fetch", "--all"], check=False)
print(f"git fetch --all: {result.stdout}")
def get_env_info() -> dict[str, str]: def get_env_info() -> dict[str, str]: