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()