diff --git a/src/Patcher/BsdPatchPatcher.php b/src/Patcher/BsdPatchPatcher.php index b7cf9d48..f5636bb6 100644 --- a/src/Patcher/BsdPatchPatcher.php +++ b/src/Patcher/BsdPatchPatcher.php @@ -15,7 +15,7 @@ public function apply(Patch $patch, string $path): bool // TODO: Dry run first? return $this->executeCommand( - '%s -p%s --posix --batch -d %s -i %s', + '%s -p%s --verbose --posix --batch -d %s -i %s', $this->patchTool(), $patch->depth, $path, diff --git a/src/Patcher/GitPatcher.php b/src/Patcher/GitPatcher.php index 76349631..4d57e5b1 100644 --- a/src/Patcher/GitPatcher.php +++ b/src/Patcher/GitPatcher.php @@ -39,7 +39,7 @@ public function apply(Patch $patch, string $path): bool // Otherwise, we can try to apply the patch. return $this->executeCommand( - '%s -C %s apply -p%s %s', + '%s -C %s apply -p%s --verbose %s', $this->patchTool(), $path, $patch->depth, diff --git a/src/Patcher/GnuPatchPatcher.php b/src/Patcher/GnuPatchPatcher.php index 6d34c9d4..c5ee3e58 100644 --- a/src/Patcher/GnuPatchPatcher.php +++ b/src/Patcher/GnuPatchPatcher.php @@ -14,7 +14,7 @@ public function apply(Patch $patch, string $path): bool // TODO: Dry run first? return $this->executeCommand( - '%s -p%s --no-backup-if-mismatch -d %s -i %s', + '%s -p%s --no-backup-if-mismatch --verbose -d %s -i %s', $this->patchTool(), $patch->depth, $path,