Skip to content

Commit

Permalink
Merge pull request #698 from nao23/fix/run-command-log-message-style
Browse files Browse the repository at this point in the history
fix: add missing space between words in run command log messages
  • Loading branch information
fujiwara authored May 23, 2024
2 parents c2d0615 + fc6b121 commit 7e15ab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7e15ab0

Please sign in to comment.