summaryrefslogtreecommitdiff
path: root/util.lisp
diff options
context:
space:
mode:
authormRnea <[email protected]>2024-07-29 00:36:06 +0300
committermRnea <[email protected]>2024-07-29 00:36:06 +0300
commit49b58b2d57eb9ae5a5d587bf6144f198797da0a2 (patch)
tree4ae2b8aee16beeb7e8cc9aeb40e9a1a12a539c73 /util.lisp
parentd1481f2770f363aa436db853a7c4f7616de80e50 (diff)
minor change to run to make it more generic
Diffstat (limited to 'util.lisp')
-rw-r--r--util.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.lisp b/util.lisp
index b97b0fa..e4a9ccb 100644
--- a/util.lisp
+++ b/util.lisp
@@ -20,9 +20,9 @@
(defun mklist (form)
(if (listp form) form (list form)))
-(defun run (args)
+(defun run (args &rest options)
(format t "~{~a~^ ~}~%" args)
- (uiop:run-program args :output *standard-output*))
+ (apply #'uiop:run-program args options))
(defun from-root (path)
(merge-pathnames path (asdf:system-source-directory :cl-forth)))