api-site/tools/build-firstapp-rst.sh
Andreas Jaeger 2c69bdd2c5 Fix publishing of draft firstapp guides
To publish the draft guides, we need to move them to publish-docs/api-ref.
Fix the publishing location.

Change-Id: Iaf27e9315031be232672ae4d33efff2c0db9ce65
2015-10-14 20:10:15 +02:00

16 lines
380 B
Bash
Executable File

#!/bin/bash -e
mkdir -p publish-docs
# Publish documents to api-ref for developer.openstack.org
for tag in libcloud; do
tools/build-rst.sh firstapp \
--tag ${tag} --target "api-ref/firstapp-${tag}"
done
# Draft documents
for tag in dotnet fog pkgcloud shade; do
tools/build-rst.sh firstapp \
--tag ${tag} --target "api-ref/draft/firstapp-${tag}"
done