Skip to content

Commit

Permalink
Updated the help CLI: punctuations, grammar, and style.
Browse files Browse the repository at this point in the history
  • Loading branch information
CmdP1rx committed May 1, 2024
1 parent aa1677d commit 428e9a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/dbt/cli/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
export_saved_queries = click.option(
"--export-saved-queries/--no-export-saved-queries",
envvar="DBT_EXPORT_SAVED_QUERIES",
help="Export saved queries within the 'build' command, otherwise no-op.",
help="Export saved queries within the `build` command, otherwise no-op.",
is_flag=True,
hidden=True,
)
Expand Down Expand Up @@ -272,7 +272,7 @@
"--output",
"-o",
envvar=None,
help="Specify the output path for the JSON report. By default, outputs to 'target/sources.json'.",
help="Specify the output path for the JSON report. By default, outputs to 'target.json` or `sources.json'.",
type=click.Path(file_okay=True, dir_okay=False, writable=True),
default=None,
)
Expand Down Expand Up @@ -692,7 +692,7 @@ def _version_callback(ctx, _param, value):
envvar="DBT_WARN_ERROR_OPTIONS",
default="{}",
help="""If dbt would normally warn, instead raise an exception based on include/exclude configuration. Examples include `--select` that selects nothing, deprecations, configurations with no associated models, invalid test configurations,
and missing sources/refs in tests. This argument should be a YAML string, with keys 'include' or 'exclude'. eg. '{"include": "all", "exclude": ["NoNodesForSelectionCriteria"]}'.""",
and missing sources/refs in tests. This argument should be a YAML string, with keys `include` or `exclude`. eg. '{"include": "all", "exclude": ["NoNodesForSelectionCriteria"]}'.""",
type=WarnErrorOptionsType(),
)

Expand Down

0 comments on commit 428e9a6

Please sign in to comment.