Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding -f flag to stop 'patch' from asking any question #1

Open
wants to merge 1 commit into
base: issue-178
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/Patches.php
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,12 @@ protected function getAndApplyPatch(RemoteFilesystem $downloader, $install_path,
foreach ($patch_levels as $patch_level) {
// Check whether the patch applies in its entirety, to avoid
// leftovers in case of partial success.
// Using --dry-run to test if the patch applies before really applying it
// this will prevent partial patches, this -f flag is used to stop 'patch'
// from asking any question.
// This works the same as --check in the git apply implementation above.
if ($this->executeCommand(
"patch --dry-run %s --no-backup-if-mismatch -d %s < %s",
"patch -f --dry-run %s --no-backup-if-mismatch -d %s < %s",
$patch_level,
$install_path,
$filename
Expand Down