delete duplicated 'git fetch' for install clasp.

This commit is contained in:
SANO Masatoshi 2017-02-26 23:21:16 +09:00
parent 8a237a0a31
commit 3001e318be

View file

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