don't break on empty file in ISSUES/
This commit is contained in:
parent
c6acfbb916
commit
e039c29a83
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@
|
|||
,(->
|
||||
source-file
|
||||
git-file->lines
|
||||
((lambda (x) (if (eof-object? x) (list (pathname-strip-directory source-file)) x)))
|
||||
((lambda (x) (if (or (eof-object? x) (null-list? x)) (list (pathname-strip-directory source-file)) x)))
|
||||
car
|
||||
(string-trim (string->char-set "# ")))))))
|
||||
source-files-list)))))
|
||||
|
|
Loading…
Reference in a new issue