From 036587a77a381f5878c6c4e8dd3485aaeb66b306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Wed, 13 Dec 2023 17:40:28 +0100 Subject: [PATCH] Volume preparation fix --- glue/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue/main.go b/glue/main.go index 282bccb..02bb9a5 100644 --- a/glue/main.go +++ b/glue/main.go @@ -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)