You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by dj...@apache.org on 2021/07/29 00:03:06 UTC

[felix-antora] branch preview updated: fix copy error

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

djencks pushed a commit to branch preview
in repository https://gitbox.apache.org/repos/asf/felix-antora.git


The following commit(s) were added to refs/heads/preview by this push:
     new 0539346  fix copy error
0539346 is described below

commit 0539346738192a7d6dd818dadd888ba395242a03
Author: David Jencks <dj...@apache.org>
AuthorDate: Wed Jul 28 17:02:54 2021 -0700

    fix copy error
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 97eff37..c0e8768 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,7 +19,7 @@ pipeline {
             steps {
                 sh 'rm -rf build'
 // clone the felix-site-pub repo
-                sh 'git clone --depth 1 --branch asf-staging" https://gitbox.apache.org/repos/asf/felix-site-pub.git build/site'
+                sh 'git clone --depth 1 --branch asf-staging https://gitbox.apache.org/repos/asf/felix-site-pub.git build/site'
                 dir('build/site') {
                     sh 'git rm -r .'
                 }
@@ -30,7 +30,7 @@ pipeline {
                 dir('build/site') {
 		          sh 'git add .'
 		          sh 'echo `git commit -m "site build"`'
-                  sh 'git push https://gitbox.apache.org/repos/asf/felix-site-pub.git asf-staging"'
+                  sh 'git push https://gitbox.apache.org/repos/asf/felix-site-pub.git asf-staging'
 	        	}
             }
         }