Rework .root-marker for shell task

We have already created the root-marker above, so need to move it from
html directory.

Change-Id: I621c8ced3df456395853657ae8ba50dc604fa5e0
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-09-08 15:12:44 -04:00
parent f45ff691af
commit 1af99f7795
No known key found for this signature in database
GPG Key ID: 611A80832067AF38

View File

@ -41,18 +41,17 @@
# a directory named for the tag, so we move that
# directory to the publish location.
mv doc/build/html/$tag doc/publish/
mv doc/build/.root-marker doc/publish/$tag/
mv doc/build/html/.root-marker doc/publish/$tag/
elif [[ $branch_name = master ]]; then
# The above tasks does not rename the output directory, but
# we want it to be called "latest".
mv doc/build/html doc/publish/latest
mv doc/build/.root-marker doc/publish/latest/
elif [[ $branch_name =~ stable/ ]]; then
# We will have already moved the content inside
# a directory named for the branch, so move that to the
# publish location.
mv doc/build/html/$(basename $branch_name) doc/publish/
mv doc/build/.root-marker doc/publish/$(basename $branch_name)
mv doc/build/html/.root-marker doc/publish/$(basename $branch_name)
elif [[ $branch_name =~ feature/ ]]; then
echo "Docs should not be published for feature branches"
exit 1