diff --git a/main.go b/main.go index 0a1d748..beb742f 100644 --- a/main.go +++ b/main.go @@ -28,6 +28,10 @@ func main() { lines := strings.SplitSeq(repositories, "\n") for repositoryPath := range lines { + if (repositoryPath == "") { + continue + } + fmt.Println(repositoryPath) } }