aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-11-07 20:41:35 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-11-07 22:33:26 +0100
commitea51f08276ce7c9386b88b320fd63ae71324351a (patch)
tree6a91715d68298f7c6fdc43ae7d36d90cb59d8903
parent3a7feb69897ad081cbe4a782b08176084df6e386 (diff)
downloadrneovim-ea51f08276ce7c9386b88b320fd63ae71324351a.tar.gz
rneovim-ea51f08276ce7c9386b88b320fd63ae71324351a.tar.bz2
rneovim-ea51f08276ce7c9386b88b320fd63ae71324351a.zip
vim-patch.sh: avoid creating *.orig files
-rwxr-xr-xscripts/vim-patch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh
index 07b3904570..2875e7d95a 100755
--- a/scripts/vim-patch.sh
+++ b/scripts/vim-patch.sh
@@ -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