Volume preparation fix
Unittests / unittests (push) Successful in 14s Details
Unittests / deploy-dev (push) Successful in 1m9s Details

This commit is contained in:
Adam Štrauch 2023-12-13 17:40:28 +01:00
parent 6d62b200a4
commit 036587a77a
Signed by: cx
GPG Key ID: 7262DAFE292BCE20
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ func (p *Processor) volumeFromURL(url string, container *docker.Container) error
log.Printf("%s: extracting archive\n", container.App.Name)
// Call tar xf archive.tar.zst -C /volume
cmd := exec.Command("tar", "-I", "zstd", "-xf", "archive.tar.zst", "-C", volumePath)
cmd := exec.Command("tar", "-xf", "archive.tar.zst", "-C", volumePath)
err = cmd.Run()
if err != nil {
log.Printf("%s: failed to extract archive: %v", container.App.Name, err)