You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by pd...@apache.org on 2018/08/07 18:32:59 UTC

[incubator-openwhisk-website] branch master updated: making dir openwhisk and added dir listing (#281)

This is an automated email from the ASF dual-hosted git repository.

pdesai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 0138a28  making dir openwhisk and added dir listing (#281)
0138a28 is described below

commit 0138a2848babf3c5feda4b54d43fbc6b487440a8
Author: Priti Desai <pd...@us.ibm.com>
AuthorDate: Tue Aug 7 11:32:57 2018 -0700

    making dir openwhisk and added dir listing (#281)
---
 tools/jenkins/website_build.groovy | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index c58beed..c4cd5e7 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -41,11 +41,14 @@ node("git-websites") {
     git checkout asf-site
     git log asf-site -3
     git status
-    rm -rf /tmp/_site
-    mv _site /tmp/
+    mkdir -p /tmp/openwhisk/
+    rm -rf /tmp/openwhisk/_site
+    mv _site /tmp/openwhisk/
+    ls -l /tmp/openwhisk/_site/
     rm -rf *
     git status
-    mv /tmp/_site/* .
+    mv /tmp/openwhisk/_site/* .
+    ls -l .
     git status
     git diff
     git add .
@@ -58,4 +61,4 @@ node("git-websites") {
     '''
   }
 
-}
\ No newline at end of file
+}