From 03983cc2564df98a27020cd7e11b4b34ec35f794 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Mon, 10 Nov 2025 17:21:28 +0200 Subject: [PATCH] adjust for upstream branch name change --- make.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make.py b/make.py index a1b7b46b..5fec3818 100755 --- a/make.py +++ b/make.py @@ -87,8 +87,8 @@ def git(args): f.write("/src/tools/linkchecker/") # Avoid fetching the whole history - git(["fetch", "--depth=1", "origin", "master"]) - git(["checkout", "master"]) + git(["fetch", "--depth=1", "origin", "main"]) + git(["checkout", "main"]) if not bin.is_file(): subprocess.run(["cargo", "build", "--release"], cwd=src, check=True)