mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
12 lines
246 B
Common Lisp
12 lines
246 B
Common Lisp
(defpackage :ros.run
|
|
(:use :cl)
|
|
(:export :*run-assoc* :probe-run-script))
|
|
(in-package :ros.run)
|
|
|
|
(defvar *run-assoc* nil)
|
|
|
|
(defun probe-run-script (impl)
|
|
(ignore-errors
|
|
(quicklisp-client:register-local-projects)
|
|
(module "run" impl)))
|