Fix wrong dir for doc/requirements.txt

The docu directory is called "doc", thus use "doc/requirements.txt".

Fix the typo in the name. Note that the PTI uses "doc" as well, see
https://governance.openstack.org/tc/reference/project-testing-interface.html#documentation

Change-Id: Ifd35cfdd37d43cf6e040727eb1f27472fe589afc
This commit is contained in:
Andreas Jaeger 2017-11-22 19:22:01 +01:00
parent f31f115194
commit cbe7006974
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
source $VENV/bin/activate
# skipping requirements.txt as it gets picked up by installing the
# python package itself
for f in docs/requirements.txt test-requirements.txt ; do
for f in doc/requirements.txt test-requirements.txt ; do
if [ -f $f ] ; then
pip install $CONSTRAINTS -r $f
break