Volume preparation fix
This commit is contained in:
parent
6d62b200a4
commit
036587a77a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user