roswell.roswell/lisp/util-run.lisp
2016-12-11 17:36:38 +09:00

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)))