8 lines
106 B
Bash
Executable File
8 lines
106 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
sbcl --non-interactive \
|
|
--load "./bob.lisp" \
|
|
--eval "(bob:build)"
|