From 7d9f3aebae15a8f3a388cd310dac09f7f5dc9ed8 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 23 Feb 2018 19:20:49 +0000 Subject: [PATCH] Use jenkins version for codecov --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ddc41ab..06a19f5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { } stage('Publish Coverage') { steps { - sh 'bash <(curl -s https://codecov.io/bash)' + sh 'curl -s https://codecov.io/bash | bash -s' sh './mvnw test jacoco:report coveralls:report' } }