From df15584b6261db3db19c33718f0e094d7ff74cbb Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Sat, 20 Apr 2024 22:46:53 +0800 Subject: [PATCH] =?UTF-8?q?fine=E2=80=A6=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy.py b/deploy.py index af36e78..453ec53 100644 --- a/deploy.py +++ b/deploy.py @@ -8,7 +8,8 @@ ON_CF = os.getenv("CF_PAGES") == "1" if ON_CF: 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]: