mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
7 lines
166 B
Common Lisp
7 lines
166 B
Common Lisp
(defpackage :roswell.dist.add
|
|
(:use :cl))
|
|
(in-package :roswell.dist.add)
|
|
|
|
(defun add (&rest r)
|
|
(dolist (elm (rest r))
|
|
(ql-dist:install-dist elm :prompt nil))) |