mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
10 lines
202 B
Common Lisp
10 lines
202 B
Common Lisp
(defpackage :roswell.dist.delete
|
|
(:use :cl)
|
|
(:shadow :delete))
|
|
(in-package :roswell.dist.delete)
|
|
|
|
(defun delete (&rest r)
|
|
(dolist (elm (rest r))
|
|
(ql-dist:uninstall (ql-dist:find-dist elm))))
|
|
|