We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df414ad commit b491689Copy full SHA for b491689
buildSrc/src/main/java/org/elasticsearch/gradle/test/rest/CopyRestTestsTask.java
@@ -176,10 +176,9 @@ void copy() {
176
c.include(xpackPatternSet.getIncludes());
177
});
178
}
179
- // TODO: once https://github.com/elastic/elasticsearch/pull/62968 lands ensure that this uses `getFileSystemOperations()`
180
// copy any additional config
181
if (additionalConfig != null) {
182
- project.copy(c -> {
+ getFileSystemOperations().copy(c -> {
183
c.from(additionalConfig.getAsFileTree());
184
c.into(getOutputDir());
185
0 commit comments