Skip to content

Commit

Permalink
Update Cobol work datasets allocation options (#559)
Browse files Browse the repository at this point in the history
* Update Cobol work datasets allocation options

Signed-off-by: Dennis Behm <[email protected]>
  • Loading branch information
dennis-behm authored Nov 8, 2024
1 parent bfacfd6 commit 12b85fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion languages/Cobol.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def createCompileCommand(String buildFile, LogicalFile logicalFile, String membe
compile.dd(new DDStatement().name("SYSPRINT").options(props.cobol_printTempOptions))
compile.dd(new DDStatement().name("SYSMDECK").options(props.cobol_tempOptions))
(1..15).toList().each { num ->
compile.dd(new DDStatement().name("SYSUT$num").options(props.cobol_tempOptions))
compile.dd(new DDStatement().name("SYSUT$num").options("cyl space(1,1) unit(sysallda) new"))
}

// define object dataset allocation
Expand Down

0 comments on commit 12b85fe

Please sign in to comment.