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
|
source-file
|
||||||
git-file->lines
|
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
|
car
|
||||||
(string-trim (string->char-set "# ")))))))
|
(string-trim (string->char-set "# ")))))))
|
||||||
source-files-list)))))
|
source-files-list)))))
|
||||||
|
|
Loading…
Reference in a new issue