Skip to content

Commit a2b4f0b

Browse files
authored
Merge pull request #1194 from souhailaS/fix-skip-reuc
Fix skip_reuc flag in MergeOptions to use GIT_MERGE_SKIP_REUC
2 parents aa0f63d + f016ecc commit a2b4f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/merge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl MergeOptions {
9595

9696
/// Do not write the REUC extension on the generated index
9797
pub fn skip_reuc(&mut self, skip: bool) -> &mut MergeOptions {
98-
self.flag(raw::GIT_MERGE_FAIL_ON_CONFLICT as u32, skip)
98+
self.flag(raw::GIT_MERGE_SKIP_REUC as u32, skip)
9999
}
100100

101101
/// If the commits being merged have multiple merge bases, do not build a

0 commit comments

Comments
 (0)