Add missing TODOs

This commit is contained in:
Oliver Davies 2025-07-31 23:06:47 +01:00
parent 9f4ad8d959
commit 3a94768343
3 changed files with 4 additions and 0 deletions

View file

@ -40,6 +40,7 @@ func splitPath(repoPath string) (string, string) {
cfg, err := config.Load() cfg, err := config.Load()
if err != nil { if err != nil {
// TODO
} }
parts := strings.SplitN(repoPath, ":", 2) parts := strings.SplitN(repoPath, ":", 2)

View file

@ -15,6 +15,7 @@ func Update(repositoryPath string) error {
cfg, err := config.Load() cfg, err := config.Load()
if err != nil { if err != nil {
// TODO
} }
repositoryPath = strings.TrimSuffix(repositoryPath, "/.git") repositoryPath = strings.TrimSuffix(repositoryPath, "/.git")

View file

@ -8,3 +8,5 @@ Add unit tests.
Add a `--dry-run` option. Add a `--dry-run` option.
Complete README. Complete README.
Add Nix package. Add Nix package.
grep -r --exclude-dir=.git TODO .