diff options
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -20,8 +20,9 @@ (defun mklist (form) (if (listp form) form (list form))) -(defun run (args &rest options) - (format t "~{~a~^ ~}~%" args) +(defun run (args &rest options &key &allow-other-keys) + (unless (eq t (getf options :silence)) + (format t "~{~a~^ ~}~%" args)) (apply #'uiop:run-program args options)) (defun from-root (path) |