From 1dc7b965b4363c4d73a3b9ba09979e4835194112 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 6 May 2016 10:44:02 +0200 Subject: [PATCH] Publish ops-guide We can publish the guide as is to the final location already. Once it is ready, we can then just update the index pages and add redirects from old location to new location. But there's no need IMHO to publish to drafts anymore. Change-Id: Iaf1a0d2609853d7d004037f78cd24819e41adcd7 --- tools/build-all-rst.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/build-all-rst.sh b/tools/build-all-rst.sh index 9b2f8a3f69..1d749b66a8 100755 --- a/tools/build-all-rst.sh +++ b/tools/build-all-rst.sh @@ -10,7 +10,7 @@ if [[ $# > 0 ]] ; then fi for guide in admin-guide arch-design cli-reference contributor-guide \ - ha-guide image-guide user-guide; do + ha-guide image-guide ops-guide user-guide; do tools/build-rst.sh doc/$guide --build build \ --target $guide $LINKCHECK done @@ -18,8 +18,7 @@ done # Draft guides # This includes guides that we publish from stable branches # as versioned like the networking-guide. -for guide in networking-guide arch-design-draft config-reference \ - ops-guide; do +for guide in networking-guide arch-design-draft config-reference; do tools/build-rst.sh doc/$guide --build build \ --target "draft/$guide" $LINKCHECK done