Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9174 from pmav99/master
Add support for GRASS 76 on Mac
  • Loading branch information
m-kuhn committed Feb 18, 2019
2 parents 78d8357 + 5c97d22 commit 9efe4c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/grass7/Grass7Utils.py
Expand Up @@ -229,15 +229,15 @@ def grassPath():
elif isMac():
# For MacOSX, we scan some well-known directories
# Start with QGIS bundle
for version in ['', '7', '70', '71', '72', '74']:
for version in ['', '7', '70', '71', '72', '74', '76']:
testfolder = os.path.join(str(QgsApplication.prefixPath()),
'grass{}'.format(version))
if os.path.isdir(testfolder):
folder = testfolder
break
# If nothing found, try standalone GRASS installation
if folder is None:
for version in ['0', '1', '2', '4']:
for version in ['0', '1', '2', '4', '6']:
testfolder = '/Applications/GRASS-7.{}.app/Contents/MacOS'.format(version)
if os.path.isdir(testfolder):
folder = testfolder
Expand Down

0 comments on commit 9efe4c5

Please sign in to comment.