You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/02/21 14:35:16 UTC

[camel-k-runtime] branch master updated: Fixed PR job

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/master by this push:
     new 62336b0  Fixed PR job
62336b0 is described below

commit 62336b0898326da42f008075218cfcba6edf4dc7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Feb 21 15:34:19 2019 +0100

    Fixed PR job
---
 Jenkinsfile.pr | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.pr b/Jenkinsfile.pr
index 884e7d3..bb19dae 100644
--- a/Jenkinsfile.pr
+++ b/Jenkinsfile.pr
@@ -46,7 +46,9 @@ pipeline {
 
         stage('Test') {
             steps {
-                pr_result = sh script: "./mvnw $MAVEN_PARAMS clean install -f pom.xml"
+                script {
+                    pr_result = sh script: "./mvnw $MAVEN_PARAMS clean install -f pom.xml"
+                }
             }
         }