mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
Tar fixes
This commit is contained in:
parent
830745adbe
commit
ae93c49689
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ public abstract class BaseCompressAction implements BrowserAction, BranchAction
|
|||
|
||||
@Override
|
||||
protected void create(String fileName, OpenFileSystemModel model, List<BrowserEntry> entries) {
|
||||
var tar = CommandBuilder.of().add("tar", "-c", "-f").addIf(gz, "-z").addFile(fileName);
|
||||
var tar = CommandBuilder.of().add("tar", "-c", "-v").addIf(gz, "-z").add("-f").addFile(fileName);
|
||||
var base = new FilePath(model.getCurrentDirectory().getPath());
|
||||
|
||||
if (directory) {
|
||||
|
|
Loading…
Reference in a new issue