7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
export HOME=$PWD/.test-env
|
|
mkdir $HOME
|
|
cd $HOME
|
|
wget -q http://beta.quicklisp.org/quicklisp.lisp -O quicklisp.lisp
|
|
sbcl --load ../update-deps.lisp
|