Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Oct 25, 2024
1 parent ac6e4fc commit 89ca790
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utils.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ Argument CMD is used to extract positional arguments and options."
(run-program command cmd t))))

(defun run-program (command cmd &optional no-post-args)
"Return COMMAND program."
"Return COMMAND program.
If the optional argument NO-POST-ARGS is non nil, do not include post
arguments in the command list."
(uiop:run-program (concatenate 'list
command
(if no-post-args '()
Expand Down

0 comments on commit 89ca790

Please sign in to comment.