Skip to content

Commit

Permalink
fixed cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
jx2lee committed Jul 3, 2024
1 parent 37e2725 commit 2a492c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/clients/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"})

Check warning on line 75 in core/dbt/clients/git.py

View check run for this annotation

Codecov / codecov/patch

core/dbt/clients/git.py#L75

Added line #L75 was not covered by tests
tags = out.decode("utf-8").strip().split("\n")
return tags

Expand Down

0 comments on commit 2a492c7

Please sign in to comment.