mirror of https://github.com/zulip/zulip.git
8 lines
251 B
Plaintext
8 lines
251 B
Plaintext
|
#!/bin/sh -ex
|
||
|
|
||
|
rm -rf static/third/gemoji/images
|
||
|
(cd tools/emoji_dump && python ./emoji_dump.py)
|
||
|
mkdir -p static/third/gemoji/images
|
||
|
mv tools/emoji_dump/out static/third/gemoji/images/emoji
|
||
|
cp -a assets/zulip-emoji/* static/third/gemoji/images/emoji/
|