don't break on empty file in ISSUES/

This commit is contained in:
pho4cexa 2023-02-23 23:33:53 -08:00
parent c6acfbb916
commit e039c29a83

View file

@ -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)))))