We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb8243 commit e1ff6e8Copy full SHA for e1ff6e8
python/plugins/processing/algs/grass7/Grass7Utils.py
@@ -254,8 +254,8 @@ def prepareGrass7Execution(commands):
254
Grass7Utils.createGrass7BatchJobFileFromGrass7Commands(commands)
255
os.chmod(Grass7Utils.grassBatchJobFilename(), stat.S_IEXEC
256
| stat.S_IREAD | stat.S_IWRITE)
257
- if isMac() and os.path.exists(Grass7Utils.grassPath() + os.sep + 'grass70.sh'):
258
- command = Grass7Utils.grassPath() + os.sep + 'grass70.sh ' \
+ if isMac() and os.path.exists(Grass7Utils.grassPath() + os.sep + '*grass.sh*'):
+ command = Grass7Utils.grassPath() + os.sep + '*grass.sh* ' \
259
+ Grass7Utils.grassMapsetFolder() + '/PERMANENT'
260
else:
261
command = 'grass70 ' + Grass7Utils.grassMapsetFolder() \
0 commit comments