We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c33f6e commit bea3558Copy full SHA for bea3558
sqlmesh_dbt/cli.py
@@ -64,6 +64,10 @@ def dbt(
64
ctx.obj = functools.partial(create, project_dir=Path.cwd(), profile=profile, target=target)
65
66
if not ctx.invoked_subcommand:
67
+ if profile or target:
68
+ # trigger a project load to validate the specified profile / target
69
+ ctx.obj()
70
+
71
click.echo(
72
f"No command specified. Run `{ctx.info_name} --help` to see the available commands."
73
)
0 commit comments