mirror of https://github.com/zulip/zulip.git
Move tools/download-zxcvbn to tools/setup.
This commit is contained in:
parent
09400a7e50
commit
d5f3a82284
|
@ -332,7 +332,7 @@ Finally continue with the All Systems instructions below.
|
|||
pip install --no-deps -r requirements.txt
|
||||
./tools/install-phantomjs
|
||||
./tools/install-mypy
|
||||
./tools/download-zxcvbn
|
||||
./tools/setup/download-zxcvbn
|
||||
./tools/emoji_dump/build_emoji
|
||||
./scripts/setup/generate_secrets.py -d
|
||||
if [ $(uname) = "OpenBSD" ]; then sudo cp ./puppet/zulip/files/postgresql/zulip_english.stop /var/postgresql/tsearch_data/; else sudo cp ./puppet/zulip/files/postgresql/zulip_english.stop /usr/share/postgresql/9.3/tsearch_data/; fi
|
||||
|
|
|
@ -167,7 +167,7 @@ def main():
|
|||
run(["tools/install-phantomjs", "--travis"])
|
||||
else:
|
||||
run(["tools/install-phantomjs"])
|
||||
run(["tools/download-zxcvbn"])
|
||||
run(["tools/setup/download-zxcvbn"])
|
||||
run(["tools/emoji_dump/build_emoji"])
|
||||
run(["scripts/setup/generate_secrets.py", "-d"])
|
||||
if "--travis" in sys.argv:
|
||||
|
|
|
@ -38,7 +38,7 @@ subprocess.check_call(['bash', '-ex', 'tools/emoji_dump/build_emoji'],
|
|||
stdout=fp, stderr=fp)
|
||||
|
||||
# Download and include zxcvbn.js
|
||||
subprocess.check_call(['bash', '-ex', 'tools/download-zxcvbn'],
|
||||
subprocess.check_call(['bash', '-ex', 'tools/setup/download-zxcvbn'],
|
||||
stdout=fp, stderr=fp)
|
||||
|
||||
# Collect the files that we're going to serve.
|
||||
|
|
Loading…
Reference in New Issue