From cbe7006974edc1d5e6a600aa725b361e8ea5026f Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 22 Nov 2017 19:22:01 +0100 Subject: [PATCH] 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 --- roles/ensure-sphinx/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ensure-sphinx/tasks/main.yaml b/roles/ensure-sphinx/tasks/main.yaml index c2c50ef46..819207931 100644 --- a/roles/ensure-sphinx/tasks/main.yaml +++ b/roles/ensure-sphinx/tasks/main.yaml @@ -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