mirror of https://github.com/PCSX2/pcsx2.git
qt:resources: Skip dotfiles when generating qrc
This commit is contained in:
parent
8f68e096d4
commit
5d37cac4a0
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue