vim-patch.sh: delete *.orig files

This commit is contained in:
Justin M. Keyes 2018-02-02 21:56:22 +01:00
parent e69a71427c
commit b67ce84c45

View File

@ -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