Allow the linked target folder does not exist when creating (#1378)

This commit is contained in:
Sheng Chen 2023-08-15 09:45:29 +08:00
Родитель 94735d0c32
Коммит 94d692777a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -281,7 +281,7 @@ public class GradleBuildServerBuildSupport implements IBuildSupport {
}
IFolder linkFolder = project.getFolder(String.join("_", relativeSourcePath.segments()));
if (!linkFolder.exists()) {
linkFolder.createLink(sourcePath, IResource.REPLACE, monitor);
linkFolder.createLink(sourcePath, IResource.REPLACE | IResource.ALLOW_MISSING_LOCAL, monitor);
}
sourceFullPath = linkFolder.getFullPath();
}