File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/groovy/org/jetbrains/intellij/tasks Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ abstract class RunIdeBase extends JavaExec {
108108 @Deprecated
109109 @InputDirectory
110110 @Optional
111+ @PathSensitive (PathSensitivity .NONE )
111112 File getIdeaDirectory () {
112113 ideDirectory != null ? project. file(ideDirectory) : null
113114 }
@@ -125,6 +126,7 @@ abstract class RunIdeBase extends JavaExec {
125126 }
126127
127128 @InputDirectory
129+ @PathSensitive (PathSensitivity .NONE )
128130 File getIdeDirectory () {
129131 ideDirectory != null ? project. file(ideDirectory) : null
130132 }
@@ -164,6 +166,7 @@ abstract class RunIdeBase extends JavaExec {
164166 }
165167
166168 @InputDirectory
169+ @PathSensitive (PathSensitivity .RELATIVE )
167170 File getPluginsDirectory () {
168171 pluginsDirectory != null ? project. file(pluginsDirectory) : null
169172 }
You can’t perform that action at this time.
0 commit comments