Changeset 15285
- Timestamp:
- 05/16/20 06:29:38 (3 years ago)
- Location:
- trunk/abcl
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/ci/install-patched-cl+ssl.bash
r15284 r15285 4 4 # resolved, we need to use our patched version. 5 5 6 mkdir -p ${HOME}/quicklisp/local-projects 7 pushd ${HOME}/quicklisp/local-projects 6 root="${HOME}/quicklisp/local-projects" 7 dir="cl-plus-ssl" 8 tag="easye/stream-fd" 8 9 9 git clone https://github.com/armedbear/cl-plus-ssl 10 mkdir -p ${root} 11 pushd ${root} 10 12 11 pushd cl-plus-ssl 12 git show-ref 13 git rev-parse 13 if [[ ! -d ${dir} ]]; then 14 git clone https://github.com/armedbear/cl-plus-ssl ${dir} 15 fi 16 17 pushd ${dir} 18 if [[ -d .hg ]]; then 19 hg update -r $tag 20 hg sum -v 21 else 22 git checkout $tag 23 git show-ref 24 git rev-parse 25 fi 14 26 popd 15 27
Note: See TracChangeset
for help on using the changeset viewer.