1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-09-16 09:26:22 +02:00

Align property naming

This commit is contained in:
Marcus Holl
2020-01-17 09:45:47 +01:00
parent 8563da8dda
commit 820b878819

View File

@@ -106,7 +106,7 @@ void call(Map parameters = [:]) {
echo "[INFO] ProjectConfig: ${projectConfig}"
}
def mtaFilePath = script.commonPipelineEnvironment.mtarFilePath
def mtarFilePath = script.commonPipelineEnvironment.mtarFilePath
def operationId = parameters.operationId
if(! operationId && mode == DeployMode.BG_DEPLOY && action != Action.NONE) {
@@ -127,7 +127,7 @@ void call(Map parameters = [:]) {
dockerExecute([script: this].plus([dockerImage: options.dockerImage, dockerPullImage: options.dockerPullImage])) {
xsDeployStdout = sh returnStdout: true, script: """#!/bin/bash
./piper xsDeploy --defaultConfig ${configFiles} --user \${USERNAME} --password \${PASSWORD} ${mtaFilePath ? '--mtaPath ' + mtaFilePath : ''} ${operationId ? '--operationId ' + operationId : ''}
./piper xsDeploy --defaultConfig ${configFiles} --user \${USERNAME} --password \${PASSWORD} ${mtarFilePath ? '--mtaPath ' + mtarFilePath : ''} ${operationId ? '--operationId ' + operationId : ''}
"""
}