download-emoji-data: Download sprite sheets for the remaining emoji sets.

Modify the `download-emoji-data` tool to download the sprite sheets
for all the currently supported emoji sets(apple, emojione, google
and twitter).
This commit is contained in:
Harshit Bansal 2017-04-01 17:38:53 +05:30 committed by Tim Abbott
parent 5674e63fc3
commit e52f2b5aba
1 changed files with 3 additions and 0 deletions

View File

@ -20,5 +20,8 @@ if [ "$CURRENT_COMMIT" == "$COMMIT" ]; then
else
echo "$COMMIT" > "$COMMIT_FILE_PATH"
wget "https://raw.githubusercontent.com/iamcal/emoji-data/$COMMIT/emoji_pretty.json" -O "$OUTPUT_PATH/emoji.json"
wget "https://raw.githubusercontent.com/iamcal/emoji-data/$COMMIT/sheet_apple_32.png" -O "$OUTPUT_PATH/sheet_apple_32.png"
wget "https://raw.githubusercontent.com/iamcal/emoji-data/$COMMIT/sheet_emojione_32.png" -O "$OUTPUT_PATH/sheet_emojione_32.png"
wget "https://raw.githubusercontent.com/iamcal/emoji-data/$COMMIT/sheet_google_32.png" -O "$OUTPUT_PATH/sheet_google_32.png"
wget "https://raw.githubusercontent.com/iamcal/emoji-data/$COMMIT/sheet_twitter_32.png" -O "$OUTPUT_PATH/sheet_twitter_32.png"
fi