From 645418fe79a4c2e764a1369455c2457b4659481e Mon Sep 17 00:00:00 2001 From: Suraj B M Date: Thu, 25 Sep 2025 22:58:22 +0530 Subject: [PATCH] fix: invert comment logic --- cmd/utils/other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/other.go b/cmd/utils/other.go index d89a9b4..f7c7491 100644 --- a/cmd/utils/other.go +++ b/cmd/utils/other.go @@ -105,7 +105,7 @@ func ParseEnv(env string) string { value = matches[4] // unquoted value } var comment = "" - if enabled { + if !enabled { comment = "# " } envs += fmt.Sprintf("%v%v=%v\n", comment, key, value)