71d31d9cce
The tags do not have anymore "based" added to them, remove it from our script so that building uses correct tags. Change-Id: I72a0bb48a96481fce4b1a83b2aecdbf86c1a0831
13 lines
301 B
Bash
Executable File
13 lines
301 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p publish-docs
|
|
|
|
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}"
|
|
done
|