fix warning on format argument

This commit is contained in:
2026-07-07 16:20:16 +03:00
parent 9e7ad2f884
commit 88b07ac68c
+2 -2
View File
@@ -123,8 +123,8 @@
(format *error-output* "~&Loading ~S..." config)
(finish-output *error-output*)
(if (null (load config :if-does-not-exist nil))
(format *error-output* " failed~%" config)
(format *error-output* " ok~%" config))))
(format *error-output* " failed~%")
(format *error-output* " ok~%"))))
(defun start (name project-root &key author (description "") license)
"Creates commonly used files for a Common Lisp project from given arguments and loaded configuration. Can be called interactively by the user at the repl."