From ae3dd6923b1b285e82d6a43f4164b73333496c8f Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 5 Feb 2026 23:57:28 +0100 Subject: [PATCH] fix(build): normalize comma-separated TAGS to prevent build failure --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index 8b0b6bcaa..971752e85 100644 --- a/magefile.go +++ b/magefile.go @@ -215,7 +215,7 @@ func initVars() { // This prevents SIGFPE crashes when running under systemd without HOME set, // caused by glibc's getpwuid_r() failing in certain environments. // See: https://github.com/go-vikunja/vikunja/issues/2170 - Tags = "osusergo " + os.Getenv("TAGS") + Tags = "osusergo " + strings.ReplaceAll(os.Getenv("TAGS"), ",", " ") setVersion() setBinLocation() setPkgVersion()