Skip to content

Commit

Permalink
Make args variable un-modified by dbt.invoke(args)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 committed Mar 23, 2024
1 parent a517491 commit 3a34e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(

def invoke(self, args: List[str], **kwargs) -> dbtRunnerResult:
try:
dbt_ctx = cli.make_context(cli.name, args)
dbt_ctx = cli.make_context(cli.name, args.copy())
dbt_ctx.obj = {
"manifest": self.manifest,
"callbacks": self.callbacks,
Expand Down

0 comments on commit 3a34e98

Please sign in to comment.