Skip to content

Commit

Permalink
Move tools/emoji_dump to tools/setup/.
Browse files Browse the repository at this point in the history
  • Loading branch information
umairwaheed committed May 26, 2016
1 parent b855265 commit 1161862
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ event_queues.json
static/js/bundle.js
static/third/gemoji/
static/third/zxcvbn/
tools/emoji_dump/bitmaps/
tools/emoji_dump/*.ttx
tools/setup/emoji_dump/bitmaps/
tools/setup/emoji_dump/*.ttx
tools/phantomjs
node_modules
npm-debug.log
Expand Down
2 changes: 1 addition & 1 deletion THIRDPARTY
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Copyright: 2013 Nijiko Yonskai
License: Apache-2.0
Comment: The software has been modified.

Files: static/third/gemoji/images/emoji/unicode/* tools/emoji_dump/*.ttf
Files: static/third/gemoji/images/emoji/unicode/* tools/setup/emoji_dump/*.ttf
Copyright: Google, Inc.
License: Apache-2.0
Comment: These are actually Noto Emoji, not gemoji.
Expand Down
2 changes: 1 addition & 1 deletion provision.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def main():
else:
run(["tools/install-phantomjs"])
run(["tools/setup/download-zxcvbn"])
run(["tools/emoji_dump/build_emoji"])
run(["tools/setup/emoji_dump/build_emoji"])
run(["scripts/setup/generate_secrets.py", "-d"])
if "--travis" in sys.argv:
run(["sudo", "service", "rabbitmq-server", "restart"])
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e
set -x

rm -rf static/third/gemoji/images
(cd tools/emoji_dump && python ./emoji_dump.py)
(cd tools/setup/emoji_dump && python ./emoji_dump.py)
mkdir -p static/third/gemoji/images
mv tools/emoji_dump/out static/third/gemoji/images/emoji
mv tools/setup/emoji_dump/out static/third/gemoji/images/emoji
cp -RPp assets/zulip-emoji/* static/third/gemoji/images/emoji/
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tools/update-prod-static
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ subprocess.check_call(['python', 'tools/minify-js']
stdout=fp, stderr=fp)

# Build emoji
subprocess.check_call(['bash', '-ex', 'tools/emoji_dump/build_emoji'],
subprocess.check_call(['bash', '-ex', 'tools/setup/emoji_dump/build_emoji'],
stdout=fp, stderr=fp)

# Download and include zxcvbn.js
Expand Down

0 comments on commit 1161862

Please sign in to comment.