ProjectExplorer: Allow selection of remote build directories

Change-Id: Ieaf0b01bde6d043782d6d9d4bb745c090c6087c1
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Marcus Tillmanns
2022-10-14 09:50:53 +02:00
parent f42282b492
commit 604f542b20
2 changed files with 28 additions and 1 deletions

View File

@@ -540,6 +540,9 @@ bool isValidMountInfo(const DockerDevicePrivate::TemporaryMountInfo &mi)
if (!mi.path.isAbsolutePath() || !mi.containerPath.isAbsolutePath())
return false;
if (mi.containerPath.isRootPath())
return false;
if (!mi.path.exists())
return false;