From cd37c49d170c493da3675cb669ba663c4ac5c90b Mon Sep 17 00:00:00 2001 From: Claudia Lapalme <32103530+ClaudiaLapalme@users.noreply.github.com> Date: Mon, 16 Mar 2020 12:11:08 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 43b882111..bca0eb6c9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,10 +19,9 @@ pipeline { } } stage('Deploy') { - when { equals expected: true, actual: doNotSkip } { - steps { - sh './mvnw deploy' - } + when { equals expected: true, actual: doNotSkip } + steps { + sh './mvnw deploy' } } }