diff --git a/src/starter.lisp b/src/starter.lisp index 7cd221d..5846c13 100644 --- a/src/starter.lisp +++ b/src/starter.lisp @@ -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."