diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2015-11-23 23:26:52 +0900 |
---|---|---|
committer | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2015-11-23 23:26:52 +0900 |
commit | 6ce789205971f59471aa968011852e85869ac117 (patch) | |
tree | 48335e598dc4b29ab270e6fab4946c911fe8aeef | |
parent | c451a4260a36e31027b687e861679a6f703bff3b (diff) |
fix document build (remove doubled "")
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
Change-Id: Ib9aa0f938dd9c9aafdb3ceaf972069881bf5e89e
-rw-r--r-- | jjb/releng-macros.yaml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/jjb/releng-macros.yaml b/jjb/releng-macros.yaml index 46203778d..e212763c1 100644 --- a/jjb/releng-macros.yaml +++ b/jjb/releng-macros.yaml @@ -198,9 +198,9 @@ [[ -d docs/output ]] echo - echo "##########################" - echo "UPLOADING DOCS UNER REVIEW" - echo "##########################" + echo "###########################" + echo "UPLOADING DOCS UNDER REVIEW" + echo "###########################" echo gs_path="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER" @@ -214,8 +214,7 @@ "gs://$gs_path"/**.html fi - gerrit_comment="Document link(s): - $(gsutil ls "gs://$gs_path" | grep -e 'index.html$' -e 'pdf$' | sed 's/^gs/http/')" + gerrit_comment="Document link(s): $(gsutil ls gs://$gs_path | grep -e 'index.html$' -e 'pdf$' | sed 's/^gs/http/')" echo echo "$gerrit_comment" echo @@ -253,8 +252,7 @@ "gs://$gs_path"/**.html fi - gerrit_comment="Document link(s): - $(gsutil ls "gs://$gs_path" | grep -e 'index.html$' -e 'pdf$' | sed 's/^gs/http/')" + gerrit_comment="Document link(s): $(gsutil ls gs://$gs_path | grep -e 'index.html$' -e 'pdf$' | sed 's/^gs/http/')" echo echo "$gerrit_comment" echo |