Skip the .class file if it does not exists

This commit is contained in:
retropikzel 2025-06-27 16:44:13 +03:00
parent bd3d05541b
commit 12ec5bf41e

View file

@ -1964,7 +1964,8 @@
(path-strip-directory (path-strip-directory
(path-strip-extension path)) (path-strip-extension path))
".sld"))) ".sld")))
(default-installer impl cfg library dir) (when (file-exists? source-class-file)
(default-installer impl cfg library dir))
(install-file cfg source-class-file dest-class-file))) (install-file cfg source-class-file dest-class-file)))
;; installers should return the list of installed files ;; installers should return the list of installed files