Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Mason <andrew@planetscale.com>
  • Loading branch information
Andrew Mason committed Oct 8, 2023
1 parent e6f50d4 commit 51ce6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/release_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func (h *ReleaseHandler) updateReleasedCobraDocs(
newBranch := fmt.Sprintf("update-release-cobradocs-for-%s", version.String())
_, err = website.CreateBranch(ctx, client, baseRef, newBranch)
if err != nil {
return nil, errors.Wrapf(err, "Failed to create git ref %s ref for repository %s/%s to %s for %s", newBranch, website.Owner, website.Name, op, version.String())
return nil, errors.Wrapf(err, "Failed to create git ref %s for repository %s/%s to %s for %s", newBranch, website.Owner, website.Name, op, version.String())
}

if err := setupRepo(ctx, vitess, fmt.Sprintf("%s for %s", op, version.String())); err != nil {
Expand Down

0 comments on commit 51ce6ec

Please sign in to comment.