Skip to content

Commit 62f272e

Browse files
committed
processing: fix path setting for saga
1 parent 9f772bc commit 62f272e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/saga/SagaUtils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def createSagaBatchJobFileFromSagaCommands(commands):
8989
fout.write('set SAGA=' + sagaPath() + '\n')
9090
fout.write('set SAGA_MLB=' + sagaPath() + os.sep
9191
+ 'modules' + '\n')
92-
fout.write('PATH=PATH;%SAGA%;%SAGA_MLB%\n')
92+
fout.write('PATH=%PATH%;%SAGA%;%SAGA_MLB%\n')
9393
elif isMac():
9494
fout.write('export SAGA_MLB=' + sagaPath()
9595
+ '/../lib/saga\n')

0 commit comments

Comments
 (0)