blob: f0cd9a9f0cc7d557ccdc24870ba2957739093031 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# SPDX-License-Identifier: EUPL-1.2
# SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
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)'
|