source: trunk/abcl/ci/install-nontrivial-gray-streams.bash

Last change on this file was 15769, checked in by Mark Evenson, 4 months ago

ci: test NONTRIVIAL-GRAY-STREAMS

File size: 318 bytes
Line 
1#!/usr/bin/env bash
2
3dir="nontrivial-gray-streams"
4uri="https://github.com/yitzchak/${dir}"
5root="${HOME}/common-lisp"
6tag="main"
7
8mkdir -p ${root}
9pushd ${root}
10
11if [[ ! -d ${dir} ]]; then 
12    git clone ${uri} ${dir}
13fi
14
15{
16  pushd ${dir}
17  git pull
18  git checkout $tag
19  git show-ref
20  git rev-parse
21  popd
22}
23
24popd
Note: See TracBrowser for help on using the repository browser.