From 12ec5bf41efbcd6209543c6b1ea1a6946565671f Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 27 Jun 2025 16:44:13 +0300 Subject: [PATCH] Skip the .class file if it does not exists --- lib/chibi/snow/commands.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/chibi/snow/commands.scm b/lib/chibi/snow/commands.scm index 648d6c94..e4685924 100644 --- a/lib/chibi/snow/commands.scm +++ b/lib/chibi/snow/commands.scm @@ -1964,7 +1964,8 @@ (path-strip-directory (path-strip-extension path)) ".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))) ;; installers should return the list of installed files