mirror of https://github.com/zulip/zulip.git
12 lines
383 B
Bash
Executable File
12 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
# We only need the mypy checker in this build, so we just install that
|
|
# directly, skipping provision.
|
|
|
|
if ! pip install --no-deps -r requirements/mypy.txt; then
|
|
echo "\`pip install --no-deps -r requirements/mypy.txt\`: Failure occured while trying to perform dependancy installation, Retrying..."
|
|
pip install --no-deps -r requirements/mypy.txt
|
|
fi
|