Fix untar dir missing

This commit is contained in:
crschnick 2024-10-06 02:53:13 +00:00
parent ae93c49689
commit da1944ef3d

View file

@ -49,7 +49,7 @@ public class BaseUntarAction implements ApplicationPathAction, LeafAction {
if (toDirectory) { if (toDirectory) {
model.getFileSystem().mkdirs(target); model.getFileSystem().mkdirs(target);
} }
sc.command(c).execute(); sc.command(c).withWorkingDirectory(model.getCurrentDirectory().getPath()).execute();
} }
}, true); }, true);
} }