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:
hjk
2022-11-29 14:58:33 +01:00
parent 3d158d73ca
commit b183efc94a

View File

@@ -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;
}