From 71d31d9cce02db0e2a3e606cb41bf8eab8d8f824 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 18 Jun 2015 10:05:13 +0200 Subject: [PATCH] Fix Install Guide tags The tags do not have anymore "based" added to them, remove it from our script so that building uses correct tags. Change-Id: I72a0bb48a96481fce4b1a83b2aecdbf86c1a0831 --- tools/build-install-guides-rst.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/build-install-guides-rst.sh b/tools/build-install-guides-rst.sh index b8580a87e3..8bf4f0bc38 100755 --- a/tools/build-install-guides-rst.sh +++ b/tools/build-install-guides-rst.sh @@ -2,12 +2,11 @@ mkdir -p publish-docs -for distro in obs rdo ubuntu; do - TAG="${distro}_based" +for tag in obs rdo ubuntu; do GLOSSARY="" if [[ ! -e doc/common-rst/glossary.rst ]] ; then GLOSSARY="--glossary" fi tools/build-rst.sh doc/install-guide-rst \ - $GLOSSARY --tag $TAG --target "draft/install-guide-rst-${TAG}" + $GLOSSARY --tag ${tag} --target "draft/install-guide-rst-${tag}" done