vim-patch.sh: avoid creating *.orig files

This commit is contained in:
Justin M. Keyes 2017-11-07 20:41:35 +01:00
parent 3a7feb6989
commit ea51f08276
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ stage_patch() {
printf "\n✘ 'patch' command not found\n"
else
printf "\nApplying patch...\n"
patch -p1 < "${patch_file}"
patch -p1 --posix < "${patch_file}"
fi
printf "\nInstructions:\n Proceed to port the patch.\n"
else