We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb7bff commit 3ad8130Copy full SHA for 3ad8130
lib/runner.js
@@ -23,7 +23,7 @@ async function apply_patch(base_path, patch_path, output_path) {
23
throw new Error(`patch_path (${patch_path}) does not exist`)
24
}
25
26
- await execSync(`patch ${output_path} ${patch_path} -R`);
+ await execSync(`patch -i ${patch_path} ${output_path} -R --no-backup-if-mismatch`);
27
28
29
module.exports = { apply_patch }
0 commit comments