From cacbe4e7d9fc50fd5302c1135f8135f197433481 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Mon, 4 Sep 2023 12:00:08 +0800 Subject: [PATCH] fix: output typo Signed-off-by: guoguangwu --- ecs-cli/modules/utils/regcredio/creds_readers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecs-cli/modules/utils/regcredio/creds_readers.go b/ecs-cli/modules/utils/regcredio/creds_readers.go index c2058aab0..dae6aa3d4 100644 --- a/ecs-cli/modules/utils/regcredio/creds_readers.go +++ b/ecs-cli/modules/utils/regcredio/creds_readers.go @@ -72,7 +72,7 @@ func ReadCredsOutput(filename string) (*ECSRegistryCredsOutput, error) { credsOutput := &ECSRegistryCredsOutput{} if err = yaml.Unmarshal([]byte(rawCredsOutput), &credsOutput); err != nil { - return nil, errors.Wrapf(err, "Error unmarshalling yaml data from registry credential ouput file: %s", filename) + return nil, errors.Wrapf(err, "Error unmarshalling yaml data from registry credential output file: %s", filename) } return credsOutput, nil