diff options
-rwxr-xr-x | scripts/vim-patch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index 6218ba378a..a9e9c5d6c3 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -258,7 +258,7 @@ stage_patch() { msg_err "'patch' command not found\n" else printf "\nApplying patch...\n" - patch -p1 --fuzz=1 --suffix= < "${patch_file}" || ret=$? + patch -p1 --fuzz=1 --no-backup-if-mismatch < "${patch_file}" || ret=$? fi printf "\nInstructions:\n Proceed to port the patch.\n" else |