Skip to content

Commit

Permalink
Update git.py
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop authored Jun 20, 2024
1 parent d389ff1 commit 8621d69
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 @@ -133,7 +133,7 @@ def clone_and_checkout(
)
except CommandResultError as exc:
err = exc.stderr
exists = re.match("fatal: destination path '(.+)' already exists", err)
exists = re.match("fatal: destination path '(.+)' already exists - TESTING", err)

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

View check run for this annotation

Codecov / codecov/patch

core/dbt/clients/git.py#L136

Added line #L136 was not covered by tests
if not exists:
raise UnknownGitCloningProblemError(repo)

Expand Down

0 comments on commit 8621d69

Please sign in to comment.