Skip to content

Commit

Permalink
corrected spelling of linkEditSyslibConcatenation in PLI.groovy (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
flpet-ibm authored Mar 9, 2022
1 parent 1e1227e commit 9e8adb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion languages/PLI.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def createLinkEditCommand(String buildFile, LogicalFile logicalFile, String memb
// add custom concatenation
def linkEditSyslibConcatenation = props.getFileProperty('pli_linkEditSyslibConcatenation', buildFile) ?: ""
if (linkEditSyslibConcatenation) {
def String[] syslibDatasets = syslibConcatenation.split(',');
def String[] syslibDatasets = linkEditSyslibConcatenation.split(',');
for (String syslibDataset : syslibDatasets )
linkedit.dd(new DDStatement().dsn(syslibDataset).options("shr"))
}
Expand Down

0 comments on commit 9e8adb5

Please sign in to comment.