Skip to content

Commit

Permalink
Backport PR #3236 on branch 1.10.x (Fix towncrier git CLI call) (#3237)
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp A <flying-sheep@web.de>
  • Loading branch information
meeseeksmachine and flying-sheep authored Sep 17, 2024
1 parent 31ea148 commit 344bc09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/towncrier_automation.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def main(argv: Sequence[str] | None = None) -> None:
# push
if not args.dry_run:
subprocess.run(
["git", "push", "--set-upstream=origin", branch_name], check=True
["git", "push", "--set-upstream", "origin", branch_name], check=True
)
else:
print("Dry run, not pushing")
Expand Down

0 comments on commit 344bc09

Please sign in to comment.