From fc6b1215a5c11d78025db77cb734ad75580a4edc Mon Sep 17 00:00:00 2001 From: Naofumi MURATA <10278628+nao23@users.noreply.github.com> Date: Thu, 23 May 2024 11:21:49 +0900 Subject: [PATCH] add space between words --- run.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.go b/run.go index ed7d8b60..f733c449 100644 --- a/run.go +++ b/run.go @@ -252,7 +252,7 @@ func (d *App) taskDefinitionArnForRun(ctx context.Context, opt RunOption) (strin if err != nil { return "", err } - d.Log("Revision is not specified. Use latest task definition family" + family) + d.Log("Revision is not specified. Use latest task definition family " + family) latestTdArn, err := d.findLatestTaskDefinitionArn(ctx, family) if err != nil { return "", err @@ -266,7 +266,7 @@ func (d *App) taskDefinitionArnForRun(ctx context.Context, opt RunOption) (strin if rev != "" { return fmt.Sprintf("%s:%s", family, rev), nil } - d.Log("Revision is not specified. Use latest task definition family" + family) + d.Log("Revision is not specified. Use latest task definition family " + family) latestTdArn, err := d.findLatestTaskDefinitionArn(ctx, family) if err != nil { return "", err