diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/build | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,5 +3,6 @@ set -euo pipefail cd "$(dirname "$0")/.." echo "Building…" -sbcl --script src/main.lisp +SONGS=$(find songs -name '*.lisp' | sort) +sbcl --script src/main.lisp $SONGS echo "Done." |