Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 41da8a8

Browse files
committed
Rephrase error message
1 parent 936fbd1 commit 41da8a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internals/secrethub/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var (
3737
ErrReadEnvFile = errRun.Code("env_file_read_error").ErrorPref("could not read the environment file %s: %s")
3838
ErrEnvDirNotFound = errRun.Code("env_dir_not_found").Error(fmt.Sprintf("could not find specified environment. Make sure you have executed `%s set`.", ApplicationName))
3939
ErrTemplate = errRun.Code("invalid_template").ErrorPref("could not parse template at line %d: %s")
40-
ErrParsingTemplate = errRun.Code("template_parsing_failed").ErrorPref("error while parsing template file '%s': %s")
40+
ErrParsingTemplate = errRun.Code("template_parsing_failed").ErrorPref("error while processing template file '%s': %s")
4141
ErrInvalidTemplateVar = errRun.Code("invalid_template_var").ErrorPref("template variable '%s' is invalid: template variables may only contain uppercase letters, digits, and the '_' (underscore) and are not allowed to start with a number")
4242
ErrSecretsNotAllowedInKey = errRun.Code("secret_in_key").Error("secrets are not allowed in run template keys")
4343
)

0 commit comments

Comments
 (0)