[lang] Fixes PUBLISH_DIR for api-quick-start
Since api-quick-start publish location (api-guide/quick-start) is different from standard scheme, we need to explicit PUBLISH_DIR for translated api-quick-start documents. Change-Id: I36d54d618a7ae0f32f5b8d86488b540f1be997c6
This commit is contained in:
parent
3e766d6c0a
commit
bb24cc4ec5
@ -109,7 +109,13 @@ function build_rst {
|
|||||||
-d ${DOCTREES} \
|
-d ${DOCTREES} \
|
||||||
${DOC_DIR}${book}/source/ \
|
${DOC_DIR}${book}/source/ \
|
||||||
${BUILD_DIR}
|
${BUILD_DIR}
|
||||||
|
# "api-quick-start" has a special location
|
||||||
|
# following https://developer.openstack.org/api-guide/quick-start/
|
||||||
|
if [ ${book} = "api-quick-start" ] ; then
|
||||||
|
PUBLISH_DIR=publish-docs/${language}/api-guide/quick-start/
|
||||||
|
else
|
||||||
PUBLISH_DIR=publish-docs/${language}/${book}/
|
PUBLISH_DIR=publish-docs/${language}/${book}/
|
||||||
|
fi
|
||||||
mkdir -p ${PUBLISH_DIR}
|
mkdir -p ${PUBLISH_DIR}
|
||||||
rsync -a ${DOC_DIR}${book}/build/html/ ${PUBLISH_DIR}
|
rsync -a ${DOC_DIR}${book}/build/html/ ${PUBLISH_DIR}
|
||||||
echo $MARKER_TEXT > ${PUBLISH_DIR}/.root-marker
|
echo $MARKER_TEXT > ${PUBLISH_DIR}/.root-marker
|
||||||
|
Loading…
Reference in New Issue
Block a user