Skip to content

Instantly share code, notes, and snippets.

@no-defun-allowed
Last active December 29, 2020 06:18
Show Gist options
  • Save no-defun-allowed/66d1560e81fbcee2694952d26133b033 to your computer and use it in GitHub Desktop.
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
#!/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