Last active
December 29, 2020 06:18
-
-
Save no-defun-allowed/66d1560e81fbcee2694952d26133b033 to your computer and use it in GitHub Desktop.
A script to download the sources of SICL and its dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PROJECTS=${1:-~/quicklisp/local-projects} | |
clone() { | |
TARGET=$PROJECTS/$(basename $1) | |
if [[ -d $TARGET ]]; then | |
(cd $TARGET; git pull) | |
else | |
git clone $1 $TARGET | |
fi | |
} | |
clone https://github.com/robert-strandh/SICL | |
clone https://github.com/robert-strandh/Cluster | |
clone https://github.com/s-expressionists/Concrete-Syntax-Tree | |
clone https://github.com/s-expressionists/Eclector | |
clone https://github.com/s-expressionists/Trucler | |
clone https://github.com/s-expressionists/Clostrum | |
clone https://github.com/s-expressionists/Incless |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment