Skip to content

Commit

Permalink
Fix the remote argument
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 14, 2024
1 parent 427ddc9 commit 3fd7157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tag_publish/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3fd7157

Please sign in to comment.