8e9507bf9a
This change moves the .rst files into the main adming-guide-cloud folder now conversion is complete. changes to the project config and to the openstack manuals to stop sync of .xml files are also needed. Change-Id: I498e8d6ac3cb80da413e23b14a0959abd58e7d79 Implements: blueprint reorganise-user-guides
21 lines
455 B
Bash
Executable File
21 lines
455 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p publish-docs
|
|
|
|
GLOSSARY="--glossary"
|
|
|
|
for guide in user-guide user-guide-admin networking-guide admin-guide-cloud; do
|
|
tools/build-rst.sh doc/$guide $GLOSSARY --build build \
|
|
--target $guide
|
|
# Build it only the first time
|
|
GLOSSARY=""
|
|
done
|
|
|
|
# Draft guides
|
|
for guide in contributor-guide; do
|
|
tools/build-rst.sh doc/$guide --build build \
|
|
--target "draft/$guide"
|
|
done
|
|
|
|
tools/build-install-guides-rst.sh
|