Fix all the ugly formatting that I left in due to end of day fatigue. 43/1343/2
authorAric Gardner <agardner@linuxfoundation.org>
Thu, 27 Aug 2015 12:09:48 +0000 (08:09 -0400)
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>
Thu, 27 Aug 2015 12:39:15 +0000 (12:39 +0000)
Change-Id: I0bbda7c5e0a8c394545049bf3119a1465862eeaf
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
jjb/releng/docu-build-new.sh

index cecd65c..8c0cc49 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash 
+#!/bin/bash
 set -e
 set -o pipefail
 
@@ -9,13 +9,13 @@ if [[ -d docs/output ]]; then
 rm -rf docs/output
 echo "cleaning up output directory"
 fi
-}} 
+}}
 
 trap clean EXIT TERM INT SIGTERM SIGHUP
 
 directories=()
 while read -d $'\n'; do
-        directories+=("$REPLY")
+  directories+=("$REPLY")
 done < <(find docs/ -name 'index.rst' -printf '%h\n' | sort -u )
 
 for dir in "${{directories[@]}}"; do
@@ -36,44 +36,41 @@ done
 [[ $GERRIT_CHANGE_NUMBER =~ .+ ]]
 [[ $GERRIT_PROJECT =~ .+ ]]
 [[ $GERRIT_BRANCH =~ .+ ]]
+gs_path_review="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER"
 
-directories=()
-while read -d $'\n'; do
-          directories+=("$REPLY")
-        done < <(find docs/ -name 'index.rst' -printf '%h\n' | sort -u )
-
-        for dir in "${{directories[@]}}"; do
-          echo
-          echo "#############################"
-          echo "UPLOADING DOCS in ${{dir##*/}}"
-          echo "#############################"
-          echo
-
-          gs_path_review="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER"
-          if [[ $GERRIT_BRANCH = "master" ]] ; then
-              gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT"
-          else
-              gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT/${{GERRIT_BRANCH##*/}}"
-          fi
-
-          if [[ $JOB_NAME =~ "verify" ]] ; then
-              gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_review/"
-              # post link to gerrit as comment
-              gerrit_comment="$(echo '"Document is available at 'http://$gs_path_review/"${{dir##*/}}"/index.html' for review"')"
-              echo "$gerrit_comment"
-              ssh -p 29418 gerrit.opnfv.org gerrit review -p $GERRIT_PROJECT -m \
-              "$gerrit_comment" $GERRIT_PATCHSET_REVISION
-          else
-              gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_branch/"
-
-              echo "Latest document is available at http://$gs_path_branch/index.html"
-
-              if gsutil ls "gs://$gs_path_review" > /dev/null 2>&1 ; then
-                  echo
-                  echo "Deleting Out-of-dated Documents..."
-                  gsutil rm -r "gs://$gs_path_review"
-              fi
-          fi
+for dir in "${{directories[@]}}"; do
+  echo
+  echo "#############################"
+  echo "UPLOADING DOCS in ${{dir##*/}}"
+  echo "#############################"
+  echo
 
+  if [[ $GERRIT_BRANCH = "master" ]] ; then
+    gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT"
+  else
+    gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT/${{GERRIT_BRANCH##*/}}"
+  fi
+
+  if [[ $JOB_NAME =~ "verify" ]] ; then
+    gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_review/"
+    # post link to gerrit as comment
+    gerrit_comment="$(echo '"Document is available at 'http://$gs_path_review/"${{dir##*/}}"/index.html' for review"')"
+    echo "$gerrit_comment"
+    ssh -p 29418 gerrit.opnfv.org gerrit review -p $GERRIT_PROJECT -m \
+    "$gerrit_comment" $GERRIT_PATCHSET_REVISION
+
+  else
+
+    gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_branch/"
+    echo "Latest document is available at http://$gs_path_branch/index.html"
+
+    #Clean up review when merging
+    if gsutil ls "gs://$gs_path_review" > /dev/null 2>&1 ; then
+      echo
+      echo "Deleting Out-of-dated Documents..."
+      gsutil rm -r "gs://$gs_path_review"
+    fi
+
+  fi
 
 done