From 3fd7157e3d0ee6d5ea7ee14256efdd955506843c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Thu, 14 Nov 2024 17:05:07 +0100 Subject: [PATCH] Fix the remote argument --- tag_publish/new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tag_publish/new.py b/tag_publish/new.py index f5b2f8a..f06077f 100644 --- a/tag_publish/new.py +++ b/tag_publish/new.py @@ -94,7 +94,7 @@ def main() -> None: subprocess.run(["git", "checkout", default_branch], check=True) # Pull it from origin - subprocess.run(["git", "pull", arguments, default_branch], check=True) + subprocess.run(["git", "pull", arguments.remote, default_branch], check=True) # Push it to a new stabilization branch if arguments.version: