Skip to content

Commit

Permalink
make travis even happier
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Mar 24, 2017
1 parent 3d24b7a commit fc425b2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions python/plugins/processing/algs/saga/SagaUtils.py
Expand Up @@ -95,12 +95,12 @@ def createSagaBatchJobFileFromSagaCommands(commands):
fout = open(sagaBatchJobFilename(), 'w')
if isWindows():
fout.write('set SAGA=' + sagaPath() + '\n')
fout.write('set SAGA_MLB=' + sagaPath() + os.sep
+ 'modules' + '\n')
fout.write('set SAGA_MLB=' + sagaPath() + os.sep +
'modules' + '\n')
fout.write('PATH=%PATH%;%SAGA%;%SAGA_MLB%\n')
elif isMac():
fout.write('export SAGA_MLB=' + sagaPath()
+ '/../lib/saga\n')
fout.write('export SAGA_MLB=' + sagaPath() +
'/../lib/saga\n')
fout.write('export PATH=' + sagaPath() + ':$PATH\n')
else:
pass
Expand All @@ -110,6 +110,7 @@ def createSagaBatchJobFileFromSagaCommands(commands):
fout.write('exit')
fout.close()


_installedVersion = None
_installedVersionFound = False

Expand Down

0 comments on commit fc425b2

Please sign in to comment.