lisp/build-manual @ e3f5572c7738

Oh god
author Steve Losh <steve@stevelosh.com>
date Thu, 20 Dec 2018 23:55:17 -0500
parents c6afac579697
children 3e8af1c65b8c
#!/usr/bin/env bash

set -euo pipefail

LISP=$1
NAME=$(basename "$LISP" .lisp)
OUT="$NAME.1"
shift

sbcl --disable-debugger --load "$LISP" --eval "(with-open-file (f \"$OUT\" :direction :output :if-exists :supersede) (adopt:print-manual *ui* :stream f))" --quit "$@"