Skip to content

Commit

Permalink
[grass7][mac] Use the most recent GRASS version
Browse files Browse the repository at this point in the history
This is backporting: #9200
It is a continuation of:

    * [8db3dea](8db3dea)
    * [9efe4c5](9efe4c5)

This commit only affects users that have multiple GRASS installations on
their Macs. Using the most recent GRASS version is what we do on Linux too.
  • Loading branch information
pmav99 authored and nyalldawson committed Feb 20, 2019
1 parent 1de9e28 commit 80ab968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/Grass7Utils.py
Expand Up @@ -223,7 +223,7 @@ def grassPath():
break
# If nothing found, try standalone GRASS installation
if folder is None:
for version in ['0', '1', '2', '4']:
for version in ['6', '4', '2', '1', '0']:
testfolder = '/Applications/GRASS-7.{}.app/Contents/MacOS'.format(version)
if os.path.isdir(testfolder):
folder = testfolder
Expand Down

0 comments on commit 80ab968

Please sign in to comment.