#!/bin/sh # SPDX-License-Identifier: EUPL-1.2 # SPDX-FileCopyrightText: 2025 Uko Kokņevičs set -eu # Note this still has the debugger and such things enabled, at this point it makes life easier for me :). For a more # hands-off auto-restarting approach, consider disabling all the fancy SBCL things (similar to ./run_tests.sh) and # putting it in a shell while true loop. exec sbcl \ --eval '(asdf:load-system :ukkoclot)' \ --eval '(log:config :debug :sane2)' \ --eval '(setf ukkoclot::*in-prod* t)' \ --eval '(ukkoclot:main)'