hooks/post-extract/00-patches.sh: ignore files without patch/diff suffix

This commit is contained in:
Michael Gehring 2017-09-26 10:34:52 +00:00
parent 660cb53856
commit 85b7e8335a
1 changed files with 3 additions and 3 deletions

View File

@ -20,13 +20,13 @@ _process_patch() {
elif [[ $f =~ .bz2$ ]]; then
bunzip2 "$wrksrc/${_patch}"
_patch=${_patch%%.bz2}
elif [[ $f =~ .diff ]]; then
elif [[ $f =~ .diff$ ]]; then
:
elif [[ $f =~ .patch ]]; then
elif [[ $f =~ .patch$ ]]; then
:
else
msg_warn "$pkgver: unknown patch type: $i.\n"
continue
return 0
fi
cd "$wrksrc"