fix: system-config.org paren balance (missing defun close)

This commit is contained in:
2026-05-04 11:44:31 -04:00
parent abfb7e5cf8
commit eb99847ccd
2 changed files with 8 additions and 6 deletions

View File

@@ -148,9 +148,9 @@
(if (> (length key) 0) (if (> (length key) 0)
(progn (config-set env-key key) (progn (config-set env-key key)
(format t "✓ ~a API key saved~%" chosen)) (format t "✓ ~a API key saved~%" chosen))
(format t "Skipping ~a — no key entered.~%" chosen)))))))) (format t "Skipping ~a — no key entered.~%" chosen))))))))
(format t "~%")) (format t "~%")))
(defun setup-add-provider () (defun setup-add-provider ()
"Entry point for adding a single provider (called from CLI)." "Entry point for adding a single provider (called from CLI)."

View File

@@ -225,9 +225,11 @@ These are shown inline when the user runs the setup wizard, so they know what th
(if (> (length key) 0) (if (> (length key) 0)
(progn (config-set env-key key) (progn (config-set env-key key)
(format t "✓ ~a API key saved~%" chosen)) (format t "✓ ~a API key saved~%" chosen))
(format t "Skipping ~a — no key entered.~%" chosen)))))))) (format t "Skipping ~a — no key entered.~%" chosen))))))))
(format t "~%")) (format t "~%")))
#+end_src #+end_src