git.fiddlerwoaroof.com
build-reading-list-reader.sh
1aa0f8f7
 #!/usr/bin/env bash
 set -eu -x -o pipefail
 
 cd "$(dirname $0)"
 mkdir -p dist
 
 pushd dist
 rm -rf fwoar.lisputils
 git clone https://github.com/fiddlerwoaroof/fwoar.lisputils.git
382ab041
 rm -rf data-lens
 git clone https://github.com/fiddlerwoaroof/data-lens.git
1aa0f8f7
 popd
 
 export CL_SOURCE_REGISTRY="$PWD/dist//"
 sbcl --no-userinit \
382ab041
      --disable-debugger \
1aa0f8f7
      --load ~/quicklisp/setup.lisp \
382ab041
      --eval "(progn (pushnew :$1 *features*)
                     (load \"build.lisp\"))"