diff --git a/src/plugins/projectexplorer/desktoprunconfiguration.cpp b/src/plugins/projectexplorer/desktoprunconfiguration.cpp index b984dfea187..e39157094d9 100644 --- a/src/plugins/projectexplorer/desktoprunconfiguration.cpp +++ b/src/plugins/projectexplorer/desktoprunconfiguration.cpp @@ -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; }