mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Fix untar dir missing
This commit is contained in:
parent
ae93c49689
commit
da1944ef3d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue