Skip to content

Commit

Permalink
Merge pull request #12 from camptocamp/fix-new-version
Browse files Browse the repository at this point in the history
Fix the remote argument
  • Loading branch information
sbrunner authored Nov 15, 2024
2 parents 311a43e + 3fd7157 commit 2ca2b71
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 2ca2b71

Please sign in to comment.