From 975a9f53444173a695eac7640b9fba7cf5fa46e2 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 16 Feb 2024 17:37:13 +0100 Subject: [PATCH] fix(libreoffice): wrong archive filename --- pkg/modules/api/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modules/api/context.go b/pkg/modules/api/context.go index b5243e8e..e63c775a 100644 --- a/pkg/modules/api/context.go +++ b/pkg/modules/api/context.go @@ -250,7 +250,7 @@ func (ctx *Context) BuildOutputFile() (string, error) { ImplicitTopLevelFolder: false, } - archivePath := ctx.GeneratePath(".zip", "") + archivePath := ctx.GeneratePath("", ".zip") err := z.Archive(ctx.outputPaths, archivePath) if err != nil {