Skip to content

Commit

Permalink
cli: fix minor typo
Browse files Browse the repository at this point in the history
GITHUB_PR_NUMBER: 6574
GITHUB_PR_URL: #6574

Co-authored-by: Samuel Ainsworth <226872+samuela@users.noreply.github.com>
GitOrigin-RevId: f62f046
  • Loading branch information
hasura-bot and samuela committed Feb 22, 2021
1 parent fe0d858 commit 8ab4213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ func (ec ExecutionContext) InstallPlugin(name string, forceCLIVersion bool) erro
})
if err != nil {
if err != plugins.ErrIsAlreadyInstalled {
return errors.Wrapf(err, "cannot fetch plugin manfiest %s", name)
return errors.Wrapf(err, "cannot fetch plugin manifest %s", name)
}
return nil
}
Expand Down

0 comments on commit 8ab4213

Please sign in to comment.