aboutsummaryrefslogtreecommitdiff
path: root/bb.edn
diff options
context:
space:
mode:
authorPatrick Kingston <patrick@pkingston.xyz>2026-02-14 18:17:50 -0500
committerPatrick Kingston <patrick@pkingston.xyz>2026-02-14 18:17:50 -0500
commiteb7da883997f4ae3bb5baa7875d94d37a6c14f1d (patch)
tree007050dc116435ef0f0b7d0f851a2cd4c9cf2671 /bb.edn
parent62966cf7418c73d68870a6f1adb87042a23c2471 (diff)
Create Elementary cellular automata
Cellular automata now makes a new row every frame and resets at the top.
Diffstat (limited to 'bb.edn')
-rw-r--r--bb.edn4
1 files changed, 3 insertions, 1 deletions
diff --git a/bb.edn b/bb.edn
index 2411642..7fbc336 100644
--- a/bb.edn
+++ b/bb.edn
@@ -2,7 +2,9 @@
:tasks
{build
{:doc "Builds the nesfab project"
- :task (shell "../nesfab/nesfab nEs.cfg")}
+ :task (do
+ (shell "rm nEslabels.mlb")
+ (shell "../nesfab/nesfab nEs.cfg"))}
watch
{:doc "Automatically build the nesfab project on file writes"
:requires ([pod.babashka.fswatcher :as fw])