Skip to content

Commit

Permalink
removed "error" from message
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabnsky committed Jan 28, 2025
1 parent 150fd6c commit 9e4722f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/service_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9e4722f

Please sign in to comment.