mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
delete duplicated 'git fetch' for install clasp.
This commit is contained in:
parent
8a237a0a31
commit
3001e318be
|
|
@ -29,12 +29,10 @@
|
|||
:output t :ignore-error-status nil))
|
||||
(chdir (opt "src"))
|
||||
(format t "git fetch~%")
|
||||
(uiop/run-program:run-program
|
||||
(list "git" "fetch") :output t :ignore-error-status nil)
|
||||
(format t "git checkout ~A" (getf argv :version))
|
||||
(uiop/run-program:run-program
|
||||
(list "git" "fetch" "origin")
|
||||
:output t :ignore-error-status nil)
|
||||
(format t "git checkout ~A~%" (getf argv :version))
|
||||
(uiop/run-program:run-program
|
||||
(list "git" "checkout" (getf argv :version))
|
||||
:output t :ignore-error-status nil))
|
||||
|
|
@ -54,7 +52,8 @@
|
|||
(config "externals.clasp.version"))
|
||||
(homedir))))
|
||||
(format out "SBCL = '~A'~%" (namestring (merge-pathnames "bin/sbcl" sbcl-base))))
|
||||
(setenv "SBCL_HOME" (namestring (merge-pathnames "lib/sbcl" sbcl-base))))
|
||||
(setenv "SBCL_HOME" (namestring (merge-pathnames "lib/sbcl" sbcl-base)))
|
||||
(format t "with sbcl-bin(~A) build clasp" sbcl-base))
|
||||
(with-open-file (out (ensure-directories-exist
|
||||
(merge-pathnames (format nil "log/clasp/~A/make.log"
|
||||
(getf argv :version))
|
||||
|
|
|
|||
Loading…
Reference in a new issue