1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-02-05 13:25:19 +02:00

Map with single parameter

This commit is contained in:
Stengel 2019-11-04 13:46:30 +01:00
parent 5b2d3a1663
commit 31d8ddb719

View File

@ -161,7 +161,7 @@ private Object substitute(String manifestFilePath, List<String> manifestVariable
def manifestData = loadManifestData(manifestFilePath, debugHelper)
// replace variables from list first.
List<Map<String>> reversedManifestVariablesList = manifestVariablesList.reverse() // to make sure last one wins.
List<Map<String,Object>> reversedManifestVariablesList = manifestVariablesList.reverse() // to make sure last one wins.
def result = manifestData
for (Map<String, Object> manifestVariableData : reversedManifestVariablesList) {