Added logging for when a suitable git repo is found.

This commit is contained in:
Paul Gauthier 2023-05-17 16:10:38 -07:00
parent a120063d45
commit d0c729469d

View file

@ -50,7 +50,9 @@ class Coder:
self.set_repo(fnames)
if not self.repo:
if self.repo:
self.io.tool("Using git repo:", self.root)
else:
self.io.tool_error("No suitable git repo, will not automatically commit edits.")
self.find_common_root()