Allow the linked target folder does not exist when creating (#1378)
This commit is contained in:
Родитель
94735d0c32
Коммит
94d692777a
|
@ -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();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче