Skip to content

Commit b491689

Browse files
committed
Fix some merge issues
1 parent df414ad commit b491689

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

buildSrc/src/main/java/org/elasticsearch/gradle/test/rest/CopyRestTestsTask.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,9 @@ void copy() {
176176
c.include(xpackPatternSet.getIncludes());
177177
});
178178
}
179-
// TODO: once https://github.com/elastic/elasticsearch/pull/62968 lands ensure that this uses `getFileSystemOperations()`
180179
// copy any additional config
181180
if (additionalConfig != null) {
182-
project.copy(c -> {
181+
getFileSystemOperations().copy(c -> {
183182
c.from(additionalConfig.getAsFileTree());
184183
c.into(getOutputDir());
185184
});

0 commit comments

Comments
 (0)