Browse Source

Arch: DXVK - ignore non-existent patch files

master
Fincer 5 years ago
parent
commit
9d982cd7b5
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      arch/0-dxvk-git/PKGBUILD

+ 3
- 1
arch/0-dxvk-git/PKGBUILD View File

@ -54,7 +54,9 @@ prepare() {
msg2 "Applying custom patches..."
for i in "${srcdir}"/*.{patch,diff}; do
patch -Np1 < ${i}
if [[ -f ${i} ]]; then
patch -Np1 < ${i}
fi
done
fi


Loading…
Cancel
Save