[FIX] Исправлен еще один баг с двойным resolve

This commit is contained in:
Gravit 2019-05-21 02:06:12 +07:00
parent 14a80ef67f
commit 6e1126a541

View file

@ -75,7 +75,7 @@ public void postDiff(UpdateRequest request, UpdateRequestEvent e, HashedDir.Diff
//Возможно эта проверка избыточна //Возможно эта проверка избыточна
if(file.isSame(ret, true)) 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()); LogHelper.debug("Copy file %s to %s", source.toAbsolutePath().toString(), ret.toAbsolutePath().toString());
//Let's go! //Let's go!
Files.copy(ret, source); Files.copy(ret, source);