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 a23dc9e commit 683309aCopy full SHA for 683309a
python/plugins/processing/algs/grass7/Grass7Utils.py
@@ -246,8 +246,8 @@ def prepareGrass7Execution(commands):
246
Grass7Utils.createGrass7BatchJobFileFromGrass7Commands(commands)
247
os.chmod(Grass7Utils.grassBatchJobFilename(), stat.S_IEXEC
248
| stat.S_IREAD | stat.S_IWRITE)
249
- if isMac() and os.path.exists(Grass7Utils.grassPath() + os.sep + 'grass70.sh'):
250
- 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 ' \
251
+ Grass7Utils.grassMapsetFolder() + '/PERMANENT'
252
else:
253
command = 'grass70 ' + Grass7Utils.grassMapsetFolder() \
0 commit comments