We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b221e commit 337aacdCopy full SHA for 337aacd
pkg/config/config.go
@@ -771,7 +771,7 @@ func (c *config) Validate(fsys fs.FS) error {
771
772
func assertEnvLoaded(s string) error {
773
if matches := envPattern.FindStringSubmatch(s); len(matches) > 1 {
774
- return errors.Errorf(`Error evaluating "%s": environment variable %s is unset.`, s, matches[1])
+ fmt.Fprintln(os.Stderr, "WARN: environment variable is unset:", matches[1])
775
}
776
return nil
777
0 commit comments