From 9313cb33b7a7679f83f5d3d3238408310118b591 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 5 Dec 2019 16:21:19 -0500 Subject: [PATCH] Fix syntax of Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fcb913e..eab9738 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { steps { sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' - sh 'php composer.phar install + sh 'php composer.phar install' sh 'php composer.phar run-script coverage -- --coverage-text --colors=never' } } @@ -25,7 +25,7 @@ pipeline { steps { sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' - sh 'php composer.phar install + sh 'php composer.phar install' sh 'php composer.phar run-script coverage -- --coverage-text --colors=never' } } @@ -39,7 +39,7 @@ pipeline { steps { sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' - sh 'php composer.phar install + sh 'php composer.phar install' sh 'php composer.phar run-script coverage -- --coverage-text --colors=never' } }