Skip to content
Permalink
Browse files
Merge pull request #9937 from qgis/backport-9935-to-release-3_6
[Backport release-3_6] remove redundant /profiles when QGIS_CUSTOM_CONFIG_PATH is set
  • Loading branch information
elpaso committed May 8, 2019
2 parents b217469 + 29f51f7 commit df9d2d6
Showing 1 changed file with 1 addition and 2 deletions.
@@ -176,8 +176,7 @@ void QgsApplication::init( QString profileFolder )
{
if ( getenv( "QGIS_CUSTOM_CONFIG_PATH" ) )
{
QString envProfileFolder = getenv( "QGIS_CUSTOM_CONFIG_PATH" );
profileFolder = envProfileFolder + QDir::separator() + "profiles";
profileFolder = getenv( "QGIS_CUSTOM_CONFIG_PATH" );
}
else
{

0 comments on commit df9d2d6

Please sign in to comment.