You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2019/08/01 20:16:28 UTC

[couchdb] branch jenkins-junit-reports-and-jenkins-env updated: Fix braces error

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

kocolosk pushed a commit to branch jenkins-junit-reports-and-jenkins-env
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-junit-reports-and-jenkins-env by this push:
     new 64b6c10  Fix braces error
64b6c10 is described below

commit 64b6c10c5d2f1abff5a2e76531173990348d6d24
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Thu Aug 1 16:16:22 2019 -0400

    Fix braces error
---
 Jenkinsfile | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index b6d4ddb..7082ffd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -252,16 +252,15 @@ pipeline {
           } // steps
           post {
             always {
-                sh '''rsync -av
-                            --include="*/"
-                            --include="*/.eunit/*.xml"
-                            --exclude="*"
-                            --prune-empty-dirs
-                            ${builddir}/apache-couchdb-*/src
-                            ${WORKSPACE}
-                    '''
-                junit '**/.eunit/*.xml'
-              }
+              sh '''rsync -av
+                          --include="*/"
+                          --include="*/.eunit/*.xml"
+                          --exclude="*"
+                          --prune-empty-dirs
+                          ${builddir}/apache-couchdb-*/src
+                          ${WORKSPACE}
+                  '''
+              junit '**/.eunit/*.xml'
             }
             success {
               archiveArtifacts artifacts: 'pkgs/**', fingerprint: true