We have some PKGBUILD files which source some shared scripts like https://github.com/msys2/MINGW-packages/tree/master/mingw-w64-PKGBUILD-common We currently don't detect changes to those scripts. Something like this should work: ```console $ bash -cx "source PKGBUILD" 2>&1 | sed -n 's/^+* \(source\|\.\) //p' PKGBUILD ./../mingw-w64-PKGBUILD-common/kde-frameworks5 ```