Skip to content

Commit

Permalink
Merge branch 'AIRAVATA-2590-uge_groovy-template-fixes' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
machristie committed Jan 29, 2018
2 parents aff441a + b74c1c5 commit 211691d
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -20,8 +20,10 @@
if (moduleCommands != null) for(mc in moduleCommands) out.print mc +'\n'
if (workingDirectory != null && workingDirectory != "") out.print 'cd ' + workingDirectory +'\n'
if (preJobCommands != null) for(pjc in preJobCommands) out.print pjc +'\n'
if (jobSubmitterCommand != null && jobSubmitterCommand != "") out.print jobSubmitterCommand + ' '
if (processPerNode != null && processPerNode != "") out.print processPerNode + ' '
if (jobSubmitterCommand != null && jobSubmitterCommand != "") {
out.print jobSubmitterCommand + ' '
if (processPerNode != null && processPerNode != "") out.print processPerNode + ' '
}
if (executablePath != null && executablePath != "") out.print executablePath + ' '
if (inputs != null) for(input in inputs) out.print input + ' '
out.print '\n'
Expand Down

0 comments on commit 211691d

Please sign in to comment.