aboutsummaryrefslogtreecommitdiff
path: root/scripts/vim-patch.sh
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-02-02 21:56:22 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-02-11 15:27:55 +0100
commitb67ce84c453e5db5dd28fdb55efde89b07ecad40 (patch)
tree4c20a703daa651954ca0c3a51e82e083954cb4ce /scripts/vim-patch.sh
parente69a71427cd7ebfe9fd86ced65f87521878e409f (diff)
downloadrneovim-b67ce84c453e5db5dd28fdb55efde89b07ecad40.tar.gz
rneovim-b67ce84c453e5db5dd28fdb55efde89b07ecad40.tar.bz2
rneovim-b67ce84c453e5db5dd28fdb55efde89b07ecad40.zip
vim-patch.sh: delete *.orig files
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-xscripts/vim-patch.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh
index 90a731710a..c7a23abe5e 100755
--- a/scripts/vim-patch.sh
+++ b/scripts/vim-patch.sh
@@ -235,6 +235,7 @@ stage_patch() {
else
printf "\nApplying patch...\n"
patch -p1 < "${patch_file}" || true
+ find -name '*.orig' -type f -delete
fi
printf "\nInstructions:\n Proceed to port the patch.\n"
else