Skip to content

Commit

Permalink
Add missing formatting directives (#521)
Browse files Browse the repository at this point in the history
Add missing formatting directives
  • Loading branch information
Yannic authored Oct 27, 2023
1 parent 3eaa1e8 commit 931aae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/pkg/tool/tool.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ func (c *Client) DownloadAction(ctx context.Context, actionDigest, outputPath st
if err != nil {
return fmt.Errorf("error creating the directory: %v", err)
}
log.Infof("Directory created:", outputPath)
log.Infof("Directory created: %v", outputPath)

if err := c.writeProto(actionProto, filepath.Join(outputPath, "ac.textproto")); err != nil {
return err
Expand Down

0 comments on commit 931aae9

Please sign in to comment.