Skip to content
Permalink
Browse files
[processing] Add 'call' statements to SAGA batch file
  • Loading branch information
backporting[bot] authored and nyalldawson committed Mar 22, 2019
1 parent 5dd29ee commit af7c3eb
Showing 1 changed file with 4 additions and 1 deletion.
@@ -109,7 +109,10 @@ def createSagaBatchJobFileFromSagaCommands(commands):
else:
pass
for command in commands:
fout.write('saga_cmd ' + command + '\n')
if isWindows():
fout.write('call saga_cmd ' + command + '\n')
else:
fout.write('saga_cmd ' + command + '\n')

fout.write('exit')

0 comments on commit af7c3eb

Please sign in to comment.