From 3a94768343c04a3628cb98f60f44a6b651151414 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 31 Jul 2025 23:06:47 +0100 Subject: [PATCH] Add missing TODOs --- internal/repositories/find.go | 1 + internal/repositories/update.go | 1 + todo.txt | 2 ++ 3 files changed, 4 insertions(+) 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 .