mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-10 14:37:34 +02:00
Skip the .class file if it does not exists
This commit is contained in:
parent
bd3d05541b
commit
12ec5bf41e
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue