diff --git a/internal/repositories/find.go b/internal/repositories/find.go index e8b0f28..bf6122b 100644 --- a/internal/repositories/find.go +++ b/internal/repositories/find.go @@ -40,6 +40,7 @@ func splitPath(repoPath string) (string, string) { cfg, err := config.Load() if err != nil { + // TODO } parts := strings.SplitN(repoPath, ":", 2) diff --git a/internal/repositories/update.go b/internal/repositories/update.go index dd933dd..97159c1 100644 --- a/internal/repositories/update.go +++ b/internal/repositories/update.go @@ -15,6 +15,7 @@ func Update(repositoryPath string) error { cfg, err := config.Load() if err != nil { + // TODO } repositoryPath = strings.TrimSuffix(repositoryPath, "/.git") diff --git a/todo.txt b/todo.txt index 16a8ee0..11424bd 100644 --- a/todo.txt +++ b/todo.txt @@ -8,3 +8,5 @@ Add unit tests. Add a `--dry-run` option. Complete README. Add Nix package. + +grep -r --exclude-dir=.git TODO .