mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] Исправлено удаление уже скопированных файлов
This commit is contained in:
parent
d4739d17ed
commit
204a341d14
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ public void postDiff(UpdateRequest request, UpdateRequestEvent e, HashedDir.Diff
|
|||
LogHelper.debug("Copy file %s to %s", ret.toAbsolutePath().toString(), source.toAbsolutePath().toString());
|
||||
//Let's go!
|
||||
Files.copy(ret, source);
|
||||
removed.add(path.concat(File.separator).concat(name));
|
||||
removed.add(IOHelper.toPath(path).toString());
|
||||
}
|
||||
}
|
||||
return HashedDir.WalkAction.CONTINUE;
|
||||
|
|
Loading…
Reference in a new issue