Fix resource re-download

This commit is contained in:
Johannes Frohnmeyer 2021-12-01 17:21:54 +01:00
parent b97d81b7a0
commit d98476a420
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public class Utils {
if (Files.isDirectory(p)) {
try {
if (shouldDelete.test(p))
deleteRecursive(p);
deleteRecursive(p, shouldDelete);
} catch (IOException e) {
throw new RuntimeException(e);
}