lisp/build-manual @ e15d05d1db45

Merge.
author Steve Losh <steve@stevelosh.com>
date Fri, 27 Dec 2019 03:14:26 +0000
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 "$@"