From 2a492c7a61446e6e4178697c313cf9d05df44cf0 Mon Sep 17 00:00:00 2001 From: jx2lee Date: Wed, 3 Jul 2024 12:14:35 +0900 Subject: [PATCH] fixed cmd --- core/dbt/clients/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/clients/git.py b/core/dbt/clients/git.py index 33beb93a6ba..cb9df8e6f21 100644 --- a/core/dbt/clients/git.py +++ b/core/dbt/clients/git.py @@ -72,7 +72,7 @@ def clone(repo, cwd, dirname=None, remove_git_dir=False, revision=None, subdirec def list_tags(cwd): - out, err = run_cmd(cwd, ["git", "tag", "--list"], env={"LC_ALL": "C"}) + out, err = run_cmd(cwd, ["git", "tag", "--no-column"], env={"LC_ALL": "C"}) tags = out.decode("utf-8").strip().split("\n") return tags