Skip to content

Commit

Permalink
🩹 Rebase on pull
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBardon committed Jan 3, 2024
1 parent ee5243b commit 0d92841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/src/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fn _pull_repository() -> Result<(), Error> {
let mut command = Command::new("git");
command
.args(vec!["-C", &WEBSITE_ROOT.display().to_string()])
.arg("pull");
.args(vec!["pull", "--rebase"]);

trace!("Running `{:?}`…", command);
let status = command
Expand Down

0 comments on commit 0d92841

Please sign in to comment.