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 6d45b33 commit ed8c02fCopy full SHA for ed8c02f
python/plugins/processing/algs/grass7/Grass7Utils.py
@@ -243,8 +243,8 @@ def prepareGrass7Execution(commands):
243
Grass7Utils.createGrass7BatchJobFileFromGrass7Commands(commands)
244
os.chmod(Grass7Utils.grassBatchJobFilename(), stat.S_IEXEC
245
| stat.S_IREAD | stat.S_IWRITE)
246
- if isMac() and os.path.exists(Grass7Utils.grassPath() + os.sep + '*grass.sh*'):
247
- command = Grass7Utils.grassPath() + os.sep + '*grass.sh* ' \
+ if isMac() and os.path.exists(Grass7Utils.grassPath() + os.sep + 'grass.sh'):
+ command = Grass7Utils.grassPath() + os.sep + 'grass.sh ' \
248
+ Grass7Utils.grassMapsetFolder() + '/PERMANENT'
249
else:
250
command = 'grass70 ' + Grass7Utils.grassMapsetFolder() \
0 commit comments