Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Stop hardcoding "grass6" in GISRC path. (#30330)
References #30238
  • Loading branch information
pmav99 authored and m-kuhn committed Jul 15, 2019
1 parent 59e31df commit fc19dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrass.cpp
Expand Up @@ -916,7 +916,7 @@ QString QgsGrass::openMapset( const QString &gisdbase,
QFileInfo info( mapsetPath );
QString user = info.owner();

sTmp = QDir::tempPath() + "/grass6-" + user + "-" + QString::number( pid );
sTmp = QDir::tempPath() + "/grass-" + user + "-" + QString::number( pid );
QDir dir( sTmp );
if ( dir.exists() )
{
Expand Down

0 comments on commit fc19dff

Please sign in to comment.