diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2015-09-01 10:14:57 -0400 |
---|---|---|
committer | Aric Gardner <agardner@linuxfoundation.org> | 2015-09-01 10:14:57 -0400 |
commit | 5e9be094411269cbf0198816f514c8a6e2e994e9 (patch) | |
tree | 07acc2f8a6071bffd0f27a63841b35ddea6b2d5d | |
parent | 747b06d445f5a552d7005ebba8330a0812296cf6 (diff) |
Correct path for upload in merge job
Change-Id: Ib5c69a26d45f3f7a01e1630f9acea997b3d446aa
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
-rwxr-xr-x | jjb/releng/docu-build-new.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/releng/docu-build-new.sh b/jjb/releng/docu-build-new.sh index ba33aeb0a..b4d58f3da 100755 --- a/jjb/releng/docu-build-new.sh +++ b/jjb/releng/docu-build-new.sh @@ -83,8 +83,8 @@ for dir in "${{directories[@]}}"; do else #upload artifacts for merge job - gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_branch/" - echo "Latest document is available at http://$gs_path_branch/index.html" + gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_branch/"${{dir}}/"" + echo "Latest document is available at http://$gs_path_branch/"${{dir}}/"index.html" #set cache to 0 for x in $(gsutil ls gs://$gs_path_branch/"${{dir}}" | grep html); |