Skip to content

Commit b5a4b33

Browse files
authored
Merge pull request #1503 from NativeScript/trifonov/fix-copyMetadata-windows
fix searching for merge assets folder on windows
2 parents 5d3cc88 + 67ccbf6 commit b5a4b33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-app/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ android {
317317
task = variant.getMergeAssets()
318318
}
319319
for (File file : task.getOutputs().getFiles()) {
320-
if (!file.getPath().contains("/incremental/")) {
320+
if (!file.getPath().contains("${File.separator}incremental${File.separator}")) {
321321
project.ext.mergedAssetsOutputPath = file.getPath()
322322
break;
323323
}

0 commit comments

Comments
 (0)