source:
tags/1.7.1/ci/install-cl+ssl.bash
| Last change on this file was 15311, checked in by , 5 years ago | |
|---|---|
| File size: 393 bytes | |
| Line | |
|---|---|
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | dir="cl-plus-ssl" |
| 4 | uri="https://github.com/armedbear/${dir}" |
| 5 | root="${HOME}/quicklisp/local-projects" |
| 6 | tag="easye/stream-fd-20200603a" |
| 7 | |
| 8 | mkdir -p ${root} |
| 9 | pushd ${root} |
| 10 | |
| 11 | if [[ ! -d ${dir} ]]; then |
| 12 | git clone ${uri} ${dir} |
| 13 | fi |
| 14 | |
| 15 | pushd ${dir} |
| 16 | if [[ -d .hg ]]; then |
| 17 | hg update -r $tag |
| 18 | hg sum -v |
| 19 | else |
| 20 | git checkout $tag |
| 21 | git show-ref |
| 22 | git rev-parse |
| 23 | fi |
| 24 | popd |
| 25 | |
| 26 | popd |
Note: See TracBrowser
for help on using the repository browser.