From 23f13facae52e623e8908f7d5bde36514fc7d2f6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Jul 2026 06:50:03 +0000 Subject: [PATCH] fix: correct syntax error in internal/conf/conf.go (newline in string literal) --- internal/conf/conf.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/conf/conf.go b/internal/conf/conf.go index 38eb5664..4338093e 100644 --- a/internal/conf/conf.go +++ b/internal/conf/conf.go @@ -145,9 +145,7 @@ func setupSetting(suite []string, noDefault bool) error { // Validate critical security settings if JWTSetting.Secret == "" { - fmt.Fprintf(os.Stderr, "fatal: JWT Secret is not set. Generate one with: openssl rand -base64 32 -Set it in custom/config.yaml under JWT.Secret -") + fmt.Fprintf(os.Stderr, "fatal: JWT Secret is not set. Generate one with: openssl rand -base64 32\nSet it in custom/config.yaml under JWT.Secret\n") os.Exit(1) }