We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38ca6b commit 9cb92b8Copy full SHA for 9cb92b8
sqlmesh_dbt/cli.py
@@ -52,6 +52,10 @@ def dbt(
52
ctx.obj = functools.partial(create, project_dir=Path.cwd(), profile=profile, target=target)
53
54
if not ctx.invoked_subcommand:
55
+ if profile or target:
56
+ # trigger a project load to validate the specified profile / target
57
+ ctx.obj()
58
+
59
click.echo(
60
f"No command specified. Run `{ctx.info_name} --help` to see the available commands."
61
)
0 commit comments