From ed99ac6bf756aaff80663259f77452f848b9ba88 Mon Sep 17 00:00:00 2001 From: SarahNoack <44202907+SarahNoack@users.noreply.github.com> Date: Thu, 7 Feb 2019 16:42:18 +0100 Subject: [PATCH] Fix code climate issues --- documentation/docs/scenarios/CAP_Scenario.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/documentation/docs/scenarios/CAP_Scenario.md b/documentation/docs/scenarios/CAP_Scenario.md index 709b76756..3caa43dbc 100644 --- a/documentation/docs/scenarios/CAP_Scenario.md +++ b/documentation/docs/scenarios/CAP_Scenario.md @@ -28,20 +28,20 @@ In this scenario, we want to show how to implement a basic continuous delivery p ```groovy @Library('piper-library-os') _ -node(){ - stage('Prepare') { +node(){ + stage('Prepare') { deleteDir() checkout scm setupCommonPipelineEnvironment script:this - } - - stage('Build') { + } + + stage('Build') { mtaBuild script:this, buildTarget:'CF' - } - - stage('Deploy') { + } + + stage('Deploy') { cloudFoundryDeploy script:this, deployTool:'mtaDeployPlugin' - } + } } ```