CLI: Fix help message on metadata export

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10198
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: f4bb3451c37283cfa0658d56b678052bd02bff94
This commit is contained in:
Sean Park-Ross 2023-08-24 10:53:06 +02:00 committed by hasura-bot
parent d40f9057e4
commit b49952230e
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ func newMetadataExportCmd(ec *cli.ExecutionContext) *cobra.Command {
# Use with admin secret:
hasura metadata export --admin-secret "<admin-secret>"
# Export metadata to another instance specified by the flag:
# Export metadata from another instance specified by the flag:
hasura metadata export --endpoint "<endpoint>"`,
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {

View File

@ -39,7 +39,7 @@ hasura metadata export
# Use with admin secret:
hasura metadata export --admin-secret "<admin-secret>"
# Export metadata to another instance specified by the flag:
# Export metadata from another instance specified by the flag:
hasura metadata export --endpoint "<endpoint>"
```