We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e880db5 commit b41b6dfCopy full SHA for b41b6df
python/plugins/processing/algs/saga/SagaUtils.py
@@ -109,7 +109,10 @@ def createSagaBatchJobFileFromSagaCommands(commands):
109
else:
110
pass
111
for command in commands:
112
- fout.write('saga_cmd ' + command + '\n')
+ if isWindows():
113
+ fout.write('call saga_cmd ' + command + '\n')
114
+ else:
115
+ fout.write('saga_cmd ' + command + '\n')
116
117
fout.write('exit')
118
0 commit comments