diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-02-02 21:56:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-11 15:27:55 +0100 |
commit | b67ce84c453e5db5dd28fdb55efde89b07ecad40 (patch) | |
tree | 4c20a703daa651954ca0c3a51e82e083954cb4ce /scripts/vim-patch.sh | |
parent | e69a71427cd7ebfe9fd86ced65f87521878e409f (diff) | |
download | rneovim-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-x | scripts/vim-patch.sh | 1 |
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 |