1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-30 05:59:39 +02:00

Better speaking variable name

This commit is contained in:
Marcus Holl 2018-04-20 15:44:39 +02:00
parent b092957f7d
commit 097b9a4455

View File

@ -185,7 +185,7 @@ def call(parameters = [:]) {
passwordVariable: 'password',
usernameVariable: 'username')]) {
def commonDeployParams =
def credentials =
"""--user '${username}' \
--password '${password}' \
"""
@ -199,7 +199,7 @@ def call(parameters = [:]) {
java.verify(this, configuration)
sh """${neoDeployScript} \
${commonDeployParams}
${credentials}
"""
}
}