Using rebase for the patches has become a failing-hunk

pain in the neck, so I'm switching to using merge.
This commit is contained in:
Wayne Davison
2008-02-06 16:39:53 -08:00
parent 3e8fe565ed
commit e7f642cffe

View File

@@ -138,8 +138,8 @@ sub update_patch
open(OUT, '>', "$patches_dir/$patch.diff") or die $!;
print OUT $description{$patch}, "\n";
if (system("git rebase -m $parent") != 0) {
print qq|"git rebase -m $parent" incomplete -- please fix.\n|;
if (system("git merge $parent") != 0) {
print qq|"git merge $parent" incomplete -- please fix.\n|;
$ENV{PS1} = "[$parent] patch/$patch: ";
system $ENV{SHELL} and exit 1;
}