mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 23:13:25 +00:00
Move tools/install-phantomjs to tools/setup/.
This commit is contained in:
@@ -330,7 +330,7 @@ Finally continue with the All Systems instructions below.
|
||||
|
||||
```
|
||||
pip install --no-deps -r requirements.txt
|
||||
./tools/install-phantomjs
|
||||
./tools/setup/install-phantomjs
|
||||
./tools/install-mypy
|
||||
./tools/setup/download-zxcvbn
|
||||
./tools/emoji_dump/build_emoji
|
||||
|
||||
@@ -164,9 +164,9 @@ def main():
|
||||
os.chdir(ZULIP_PATH)
|
||||
|
||||
if "--travis" in sys.argv:
|
||||
run(["tools/install-phantomjs", "--travis"])
|
||||
run(["tools/setup/install-phantomjs", "--travis"])
|
||||
else:
|
||||
run(["tools/install-phantomjs"])
|
||||
run(["tools/setup/install-phantomjs"])
|
||||
run(["tools/setup/download-zxcvbn"])
|
||||
run(["tools/setup/emoji_dump/build_emoji"])
|
||||
run(["scripts/setup/generate_secrets.py", "-d"])
|
||||
|
||||
@@ -5,7 +5,7 @@ import sys
|
||||
import platform
|
||||
import subprocess
|
||||
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
|
||||
from zulip_tools import run
|
||||
|
||||
if platform.architecture()[0] == '64bit':
|
||||
Reference in New Issue
Block a user