We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b4dba4 commit a896757Copy full SHA for a896757
path.lisp
@@ -74,10 +74,14 @@
74
(drop pos system-name)
75
"/"))
76
root))
77
- (system-lisp-files (directory
78
- (make-pathname :defaults root
79
- :name :wild
80
- :type "lisp"))))
+ (system-lisp-files
+ (directory
+ (make-pathname :defaults root
+ :name :wild
81
+ :type "lisp")))
82
83
+ (remove-if (op (string^= "#." (pathname-name _)))
84
+ system-list-files)))
85
(loop for file in system-lisp-files
86
for script-name = (pathname-name file)
87
for subsystem-name = (string+ system-name "/" script-name)
0 commit comments