diff --git a/PKGBUILD/steamfork-device-support/PKGBUILD b/PKGBUILD/steamfork-device-support/PKGBUILD index dcbec76a..38924713 100644 --- a/PKGBUILD/steamfork-device-support/PKGBUILD +++ b/PKGBUILD/steamfork-device-support/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Fewtarius pkgname=steamfork-device-support -pkgver=2024.09.05 +pkgver=2024.09.06 pkgrel=1 pkgdesc='Hardware support provider for PC handhelds.' arch=('any') diff --git a/PKGBUILD/steamfork-device-support/src/usr/bin/steamfork-boot-quirks b/PKGBUILD/steamfork-device-support/src/usr/bin/steamfork-boot-quirks index af1321c6..5f506a29 100755 --- a/PKGBUILD/steamfork-device-support/src/usr/bin/steamfork-boot-quirks +++ b/PKGBUILD/steamfork-device-support/src/usr/bin/steamfork-boot-quirks @@ -4,7 +4,10 @@ if [ -d "/etc/lib/steamfork_hwsupport/devicequirks/DEFAULT/boot.d" ] then for SCRIPT in "/etc/lib/steamfork_hwsupport/devicequirks/DEFAULT/boot.d"/* do - "${SCRIPT}" + if [ -f "${SCRIPT}" ] + then + "${SCRIPT}" + fi done fi @@ -15,7 +18,10 @@ do then for SCRIPT in "${QUIRKPATH}/${DEVICE_NAME}/boot.d"/* do - "${SCRIPT}" + if [ -f "${SCRIPT}" ] + then + "${SCRIPT}" + fi done fi done