summaryrefslogtreecommitdiff
path: root/module.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'module.lisp')
-rw-r--r--module.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/module.lisp b/module.lisp
index 9cfc367..7150871 100644
--- a/module.lisp
+++ b/module.lisp
@@ -43,8 +43,8 @@
path which contain any files ending in .asd"
(map 'list #'directory-namestring
(remove-if-not (lambda (file)
- (search "asd"
- (file-namestring file)))
+ (equal "asd"
+ (nth-value 1 (uiop:split-name-type (file-namestring file)))))
(list-directory-recursive path t))))
(defvar *load-path* nil