From 9e4722f746357f1e73d68b2fff36bde1c6e88dd9 Mon Sep 17 00:00:00 2001 From: David Habinsky Date: Tue, 28 Jan 2025 13:47:10 -0700 Subject: [PATCH] removed "error" from message --- cmd/service_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/service_linux.go b/cmd/service_linux.go index 39e038f13..4ffffc131 100644 --- a/cmd/service_linux.go +++ b/cmd/service_linux.go @@ -87,7 +87,7 @@ var installCmd = &cobra.Command{ } _, err = os.Stat(configPath) if errors.Is(err, fs.ErrNotExist) { - return fmt.Errorf("error, the configfile path provided does not exist") + return fmt.Errorf("the configfile path provided does not exist") } //create the new user and set permissions err = setUser(serviceUser, mountPath, configPath)