lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 16 lines 360 B view raw
1#! /bin/sh 2 3WORK_DIR=$(mktemp -d "/tmp/ql-venv-XXXXXX") 4mkdir -p "${1:-.}" 5TARGET="$(cd "${1:-.}"; pwd)" 6 7curl http://beta.quicklisp.org/quicklisp.lisp > "$WORK_DIR/ql.lisp" 8 9sbcl --noinform \ 10 --load "$WORK_DIR/ql.lisp" \ 11 --eval "(quicklisp-quickstart:install :path \"$TARGET/\")" \ 12 --eval "(cl-user::quit)" \ 13 --script 14 15 16rm -rf "$WORK_DIR"