qt:resources: Skip dotfiles when generating qrc

This commit is contained in:
TellowKrinkle 2023-04-24 13:03:08 -05:00 committed by refractionpcsx2
parent 8f68e096d4
commit 5d37cac4a0
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ IFS="
printf "<RCC>\n"
printf "\t<qresource>\n"
for i in $(find . -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99); do
for i in $(find . -not -iname '.*' -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99); do
printf "\t\t<file>%s</file>\n" "$i"
done
printf "\t</qresource>\n"