mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-17 13:14:28 +08:00
11 lines
253 B
Bash
Executable file
11 lines
253 B
Bash
Executable file
#!/bin/sh
|
|
# PIP deps installer
|
|
set -e
|
|
set -x
|
|
|
|
pip install $CI_DJANGO
|
|
pip install \
|
|
-r requirements-optional.txt \
|
|
-r requirements-django-1.6.txt \
|
|
-r ci/requirements-${CI_REQUIREMENTS}.txt \
|
|
-r ci/requirements-${CI_DATABASE:-sqlite}.txt
|