Skip to content

Commit

Permalink
use run-program instead of uiop:run-program
Browse files Browse the repository at this point in the history
  • Loading branch information
snmsts committed Jul 30, 2024
1 parent 8968851 commit 786a25f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/impl/install/sbcl/main.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,8 @@
(unless (find-gnumake)
(message :impl-install "'make' command not available.")
(return-from impl-install 1))
(uiop:run-program
(format nil "~A install.sh" (sh))
:output :interactive
:error-output :interactive)
(run-program
(format nil "~A install.sh" (sh)))
(message :impl-install "install Done.")))

#+linux
Expand Down

0 comments on commit 786a25f

Please sign in to comment.