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

Commit 9100e7f

Browse files
committed
Edit error message
1 parent 33fc3de commit 9100e7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internals/secrethub/migrate_config_envfile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var regexpCompositeSecrets = regexp.MustCompile(`{{.+?}}[^\s]`)
6363

6464
func checkForCompositeSecrets(inFileContents []byte) error {
6565
if match := regexpCompositeSecrets.Find(inFileContents); match != nil {
66-
return fmt.Errorf("Dotenv does not support composite environment variables: %s\nMake sure one environment variable corresponds to a single secret.", match)
66+
return fmt.Errorf("composite environment variables are not supported anymore with Dotenv: %s\nMake sure one environment variable corresponds to a single secret.", match)
6767
}
6868
return nil
6969
}

0 commit comments

Comments
 (0)