Skip to content

Commit 7591c18

Browse files
committed
Fixing reversed logic from previous commit
1 parent 0b79d7d commit 7591c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Update/RecipePatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function applyPatch(RecipePatch $patch): bool
5959
return true;
6060
}
6161

62-
if (false === strpos($this->processExecutor->getErrorOutput(), 'with conflicts')) {
62+
if (false !== strpos($this->processExecutor->getErrorOutput(), 'with conflicts')) {
6363
// successful with conflicts
6464
return false;
6565
}

0 commit comments

Comments
 (0)