forked from qt-creator/qt-creator
ProjectExplorer: Append paths, not strings
For qbs. Change-Id: Ifc183794baf16d51a0e6ed1c52da797b037c69c2 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -139,7 +139,7 @@ FilePath DesktopRunConfiguration::executableToRun(const BuildTargetInfo &targetI
|
||||
if (deployedAppFilePath.isEmpty())
|
||||
return appInBuildDir;
|
||||
|
||||
const FilePath appInLocalInstallDir = deploymentData.localInstallRoot() + deployedAppFilePath;
|
||||
const FilePath appInLocalInstallDir = deploymentData.localInstallRoot() / deployedAppFilePath;
|
||||
return appInLocalInstallDir.exists() ? appInLocalInstallDir : appInBuildDir;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user