mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
prepare new update method.
This commit is contained in:
parent
07b973c837
commit
686e0eed9b
|
|
@ -72,7 +72,7 @@ LISPS = helper.el \
|
|||
install+msys2.lisp install+sigsegv.lisp install-asdf.lisp \
|
||||
\
|
||||
update.ros \
|
||||
update-git.lisp update-hg.lisp update-quicklisp.lisp \
|
||||
update-git.lisp update-hg.lisp update-quicklisp.lisp update-default.lisp \
|
||||
\
|
||||
list.ros \
|
||||
list-default.lisp \
|
||||
|
|
|
|||
8
lisp/update-default.lisp
Normal file
8
lisp/update-default.lisp
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
(roswell:include "util")
|
||||
(defpackage :roswell.update.default
|
||||
(:use :cl :roswell.util))
|
||||
(in-package :roswell.update.default)
|
||||
|
||||
(defun default (&rest args)
|
||||
(declare (ignore args))
|
||||
)
|
||||
|
|
@ -5,7 +5,7 @@ exec ros -Q -m roswell -N roswell -- $0 "$@"
|
|||
|#
|
||||
(progn ;;init forms
|
||||
(roswell:ensure-asdf)
|
||||
(roswell:include '("update-git" "update-hg")))
|
||||
(roswell:include '("update-git" "update-hg" "update-default")))
|
||||
|
||||
(defpackage :ros.script.update.3692404755
|
||||
(:use :cl :roswell.util))
|
||||
|
|
@ -13,7 +13,8 @@ exec ros -Q -m roswell -N roswell -- $0 "$@"
|
|||
|
||||
(defvar *update-functions*
|
||||
(list (module "update" "git")
|
||||
(module "update" "hg")))
|
||||
(module "update" "hg")
|
||||
(module "update" "default")))
|
||||
|
||||
(defun main (&rest argv)
|
||||
(if argv
|
||||
|
|
|
|||
Loading…
Reference in a new issue