Skip to content

Commit

Permalink
Update main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
EliSchleifer authored Mar 28, 2024
1 parent 0653eef commit 4f10970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ fn create_pull_request(words: &[String]) -> String {

let commit_msg = format!("Moving words {}", words.join(", "));
git(&["commit", "-am", &commit_msg]);
git(&["push", "-set-upstream", "origin", "HEAD"]);

git(&["push", "--set-upstream", "origin", "HEAD"]);
let pr_url = git(&[
"pr",
"create",
Expand Down

0 comments on commit 4f10970

Please sign in to comment.