changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/sbcl-make-bin.sh

changeset 368: 43afcbbe2d07
parent: a0d16a88c5f2
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 23 Sep 2024 19:47:38 -0400
permissions: -rwxr-xr-x
description: skelfile update
1 #!/usr/bin/env bash
2 CORE_SRC=${2:-/usr/local/src/core/}
3 FORM="(progn (pushnew #P\"$CORE_SRC\" asdf:*central-registry*) "
4 FORM+="(pushnew #P\"$CORE_SRC\" ql:*local-project-directories*) (ql:quickload :std)"
5 FORM+=" (ql:quickload \""
6 FORM+="${1:-bin/skel}"
7 FORM+="\") (asdf:make \""
8 FORM+="${1:-bin/skel}"
9 FORM+="\"))"
10 sbcl --noinform --non-interactive --eval "$FORM"