mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
vim-patch.sh: remove --posix from patch invocation
This was supposed to avoid creating *.orig. It doesn't do that, and worse, it also seems to prevent new files from being created.
This commit is contained in:
parent
2cfc1b055b
commit
e69a71427c
@ -234,7 +234,7 @@ stage_patch() {
|
||||
printf "\n✘ 'patch' command not found\n"
|
||||
else
|
||||
printf "\nApplying patch...\n"
|
||||
patch -p1 --posix < "${patch_file}" || true
|
||||
patch -p1 < "${patch_file}" || true
|
||||
fi
|
||||
printf "\nInstructions:\n Proceed to port the patch.\n"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user