Skip to content

Commit

Permalink
added fix by Salvatore Larosa that fixes #6862
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Dec 12, 2012
1 parent 260b4a1 commit 6637268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/sextante/grass/GrassUtils.py
Expand Up @@ -248,9 +248,9 @@ def prepareGrassExecution(commands):
GrassUtils.createGrassBatchJobFileFromGrassCommands(commands)
os.chmod(GrassUtils.grassBatchJobFilename(), stat.S_IEXEC | stat.S_IREAD | stat.S_IWRITE)
if SextanteUtils.isMac():
command = GrassUtils.grassPath() + os.sep + "grass.sh " + GrassUtils.grassMapsetFolder() + "/user"
command = GrassUtils.grassPath() + os.sep + "grass.sh " + GrassUtils.grassMapsetFolder() + "/PERMANENT"
else:
command = "grass64 " + GrassUtils.grassMapsetFolder() + "/user"
command = "grass64 " + GrassUtils.grassMapsetFolder() + "/PERMANENT"

return command

Expand Down

0 comments on commit 6637268

Please sign in to comment.