lisp/build-manual @ 8f0891b01663

Fix
author Steve Losh <steve@stevelosh.com>
date Mon, 20 May 2019 19:38:24 -0400
parents 3e8af1c65b8c
children (none)
#!/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 $NAME:*ui* :stream f))" --quit "$@"