summaryrefslogtreecommitdiff
path: root/update_icons.sh
diff options
context:
space:
mode:
authorJason Wray <friedbunny@users.noreply.github.com>2016-09-16 13:34:06 -0400
committerBrad Leege <brad@mapbox.com>2016-09-16 10:34:06 -0700
commit36076a1d6de1e81623bd00e48cd1c5b16b769e43 (patch)
treeebb9a9f4d66f297141f0d1df203a2df44dad298c /update_icons.sh
parentad35cccdbc5dc3b204844d37b13ec6037fe05887 (diff)
downloadqtlocation-mapboxgl-36076a1d6de1e81623bd00e48cd1c5b16b769e43.tar.gz
[android] Move unused icon burning script to Android folder (#6310)
Trying the new Squash and Merge Green Button functionality. I'm told that FF is now enabled, but haven't seen firsthand until now.
Diffstat (limited to 'update_icons.sh')
-rwxr-xr-xupdate_icons.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/update_icons.sh b/update_icons.sh
deleted file mode 100755
index 5e0ac5b957..0000000000
--- a/update_icons.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-if [[ -z `which iconoblast` ]]; then
- echo "Requires https://github.com/mapbox/iconoblast!"
- exit 1
-fi
-
-commit=`git rev-parse --short HEAD`
-branch=`git rev-parse --abbrev-ref HEAD`
-repo=`git remote show origin | grep 'Fetch URL' | sed -e 's/.*github\.com:mapbox\///' -e 's/\.git$//' -e 's/^mapbox-//'`
-
-pwd=`pwd`
-cd platform/android/java/app/src/main/res
-for folder in `find . -maxdepth 1 -type d -name drawable-\*`
-do
- cd ${folder}
- cp icon.png icon_burned.png
- iconoblast icon_burned.png $commit $branch $repo
- cd ..
-done
-cd ${pwd}