mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
17.50.2018 c754a2446057e6d4e32ca5e077bdfdfa4df6b132
temp dir renamed
1 files modified
2 ■■■ changed files
borgbutler-core/src/main/java/de/micromata/borgbutler/BorgCommands.java 2 ●●● patch | view | raw | blame | history
borgbutler-core/src/main/java/de/micromata/borgbutler/BorgCommands.java
@@ -158,7 +158,7 @@
    }
    public static Path extractFiles(BorgRepoConfig repoConfig, String archive, String path) throws IOException {
        Path tempDirWithPrefix = Files.createTempDirectory("borbutler");
        Path tempDirWithPrefix = Files.createTempDirectory("borgbutler-extract-");
        Context context = new Context().setWorkingDir(tempDirWithPrefix.toFile()).setRepoConfig(repoConfig)
                .setCommand("extract").setArchive(archive).setArgs(path);
        execute(context);