8000 fix platform.sh build · symfony/symfony-docs@21fbfef · GitHub
[go: up one dir, main page]

Skip to content

Commit 21fbfef

Browse files
committed
fix platform.sh build
1 parent c45a7f2 commit 21fbfef

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.platform.app.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,12 @@ disk: 512
4646
# Build time dependencies.
4747
dependencies:
4848
python:
49-
sphinx: "1.3.6"
49+
virtualenv: 15.1.0
5050

5151
# The hooks that will be performed when the package is deployed.
5252
hooks:
5353
build: |
54-
pip install git+https://github.com/fabpot/sphinx-php.git
55-
make -C _build html
54+
virtualenv venv
55+
source venv/bin/activate
56+
pip install --ignore-installed git+https://github.com/fabpot/sphinx-php.git
57+
SPHINXBUILD=../venv/bin/sphinx-build make -e -C _build html

0 commit comments

Comments
 (0)
0