From 46596a658157921b59b6f8bf65d41a33f7614c2b Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Sat, 9 Sep 2017 20:01:44 -0400 Subject: [PATCH] Remove duplicate .root-markers for prepare-docs-for-afs We've already added this file above, lets skip. Change-Id: I1d59439eb129db337238e55b7e1410f6f33b0430 Signed-off-by: Paul Belanger --- roles/prepare-docs-for-afs/tasks/main.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/roles/prepare-docs-for-afs/tasks/main.yaml b/roles/prepare-docs-for-afs/tasks/main.yaml index f2cc5173..3dc217f6 100644 --- a/roles/prepare-docs-for-afs/tasks/main.yaml +++ b/roles/prepare-docs-for-afs/tasks/main.yaml @@ -45,7 +45,6 @@ # 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/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". @@ -55,7 +54,6 @@ # 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/html/.root-marker doc/publish/$(basename $branch_name) elif [[ $branch_name =~ feature/ ]]; then echo "Docs should not be published for feature branches" exit 1