1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00

bash 4.4+ doesn't follow symlinks when using globs recursively

This commit is contained in:
Lukas Winkler 2019-03-10 21:17:46 +01:00
parent 54e42459e9
commit 12892c5d49
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -131,7 +131,7 @@ function fixFlags () {
}
function loopThrough () {
for i in src/**/*.{svg,png,gif,jpg,ico}; do
for i in src{/**/,/flags/}*.{svg,png,gif,jpg,ico}; do
size=48
absDirname=$(dirname "$i")
origFilename=$(basename "$i")