Skip to content

Commit

Permalink
Fix Git CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Sep 17, 2024
1 parent 78b738b commit be939f5
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 be939f5

Please sign in to comment.