Skip to content

Commit

Permalink
quiet the merge output (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Caedis authored Feb 8, 2025
1 parent a53fd08 commit 82c502a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/GTNHNightlyUpdater/ConfigUpdater.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void mergeChanges(File packConfigsDir) throws IOException {
runCommand("git", "-C", packConfigsDir.getAbsolutePath(), "fetch");
try {
// Merge remote changes into local branch
runCommand("git", "-C", packConfigsDir.getAbsolutePath(), "merge", "-X", "theirs", configTag != null ? configTag : "origin/master");
runCommand("git", "-C", packConfigsDir.getAbsolutePath(), "merge", "--no-stat", "--no-edit", "-X", "theirs", configTag != null ? configTag : "origin/master");
} catch (RuntimeException e) {
throw new RuntimeException(String.format("There are conflicts that need to be resolved manually. Please check the repo at [%s]", packConfigsDir.getAbsolutePath()));
}
Expand Down

0 comments on commit 82c502a

Please sign in to comment.