Skip to content

Commit

Permalink
Dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinmera committed Aug 31, 2024
1 parent 4d4436b commit f75abc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions toolkit.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,9 @@
(error "The file does not exist or is not accessible:~% ~a" path)
(opendir fd))))
#-(and cffi (or unix windows))
(dolist (entry (if recursive
(merge-pathnames pathname-utils:*wild-inferiors* path)
(merge-pathnames pathname-utils:*wild-file* path)))
(dolist (entry (directory (if recursive
(merge-pathnames pathname-utils:*wild-inferiors* path)
(merge-pathnames pathname-utils:*wild-file* path))))
(when (or (eql T type)
(and (eql :directory type) (directory-p entry))
(and (eql :file type) (file-p entry)))
Expand Down

0 comments on commit f75abc1

Please sign in to comment.