From 75703c10eecaa01549477e241e9212a66f4df40e Mon Sep 17 00:00:00 2001 From: Daniel Reeves <31971762+dwreeves@users.noreply.github.com> Date: Fri, 21 Apr 2023 11:29:15 -0400 Subject: [PATCH] add --target-path to snapshot command (#7419) --- .changes/unreleased/Fixes-20230420-104254.yaml | 6 ++++++ core/dbt/cli/main.py | 1 + 2 files changed, 7 insertions(+) create mode 100644 .changes/unreleased/Fixes-20230420-104254.yaml diff --git a/.changes/unreleased/Fixes-20230420-104254.yaml b/.changes/unreleased/Fixes-20230420-104254.yaml new file mode 100644 index 00000000000..5f3cbeed0dd --- /dev/null +++ b/.changes/unreleased/Fixes-20230420-104254.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: Add --target-path to dbt snapshot command. +time: 2023-04-20T10:42:54.17972-04:00 +custom: + Author: dwreeves + Issue: "7418" diff --git a/core/dbt/cli/main.py b/core/dbt/cli/main.py index 010483aac89..676bc23f04c 100644 --- a/core/dbt/cli/main.py +++ b/core/dbt/cli/main.py @@ -651,6 +651,7 @@ def seed(ctx, **kwargs): @p.state @p.deprecated_state @p.target +@p.target_path @p.threads @p.vars @requires.postflight