From 542e9eea5c76530608e5d4e7af2faab11c64de96 Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Tue, 31 Aug 2021 16:47:16 +0100 Subject: [PATCH] refactor: rm unneeded sprintf --- cli/app/check.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/app/check.go b/cli/app/check.go index df6b362bb..aa41d2ede 100644 --- a/cli/app/check.go +++ b/cli/app/check.go @@ -2,7 +2,6 @@ package app import ( "errors" - "fmt" "os" "path" "strings" @@ -54,7 +53,7 @@ var appCheckCommand = &cli.Command{ if len(missing) > 0 { path := appFiles[appName].Path - missingEnvVars := fmt.Sprintf(strings.Join(missing, ", ")) + missingEnvVars := strings.Join(missing, ", ") logrus.Fatalf("%s is missing %s", path, missingEnvVars) }