diff options
author | Leith Bade <leith@mapbox.com> | 2015-01-05 12:57:38 +1300 |
---|---|---|
committer | Leith Bade <leith@mapbox.com> | 2015-01-05 12:57:38 +1300 |
commit | 433a94ab0250446b783b4f58f2fa88413560cf75 (patch) | |
tree | d10e7b251613ede223c2f7656a1f3738083e5236 /update_icons.sh | |
parent | 097650b7dbdc0753e0e4269400b124974e157baf (diff) | |
download | qtlocation-mapboxgl-433a94ab0250446b783b4f58f2fa88413560cf75.tar.gz |
Fix find argument order
Diffstat (limited to 'update_icons.sh')
-rwxr-xr-x | update_icons.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_icons.sh b/update_icons.sh index 8e4f9b8947..a76a0c4d33 100755 --- a/update_icons.sh +++ b/update_icons.sh @@ -11,7 +11,7 @@ repo=`git remote show origin | grep 'Fetch URL' | sed -e 's/.*github\.com:mapbox pwd=`pwd` cd android/java/app/src/main/res -for folder in `find . -type d -name drawable-\* -maxdepth 1` +for folder in `find . -maxdepth 1 -type d -name drawable-\*` do cd ${folder} cp icon.png icon_burned.png |