mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] Исправлен еще один баг с двойным resolve
This commit is contained in:
parent
14a80ef67f
commit
6e1126a541
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ public void postDiff(UpdateRequest request, UpdateRequestEvent e, HashedDir.Diff
|
|||
//Возможно эта проверка избыточна
|
||||
if(file.isSame(ret, true))
|
||||
{
|
||||
Path source = request.getDir().resolve(path).resolve(name);
|
||||
Path source = request.getDir().resolve(path);
|
||||
LogHelper.debug("Copy file %s to %s", source.toAbsolutePath().toString(), ret.toAbsolutePath().toString());
|
||||
//Let's go!
|
||||
Files.copy(ret, source);
|
||||
|
|
Loading…
Reference in a new issue