fix(setup): ensure tui-client.org is tangled explicitly during setup

This commit is contained in:
2026-04-28 17:44:01 -04:00
parent d73f372e4b
commit ee6b263584

View File

@@ -68,8 +68,11 @@ setup_system() {
echo "Tangling harness/manifest.org..."
emacs -Q --batch --eval "(require 'org)" --eval "(org-babel-tangle-file \"harness/manifest.org\")" >/dev/null 2>&1 || true
echo "Tangling harness/tui-client.org..."
emacs -Q --batch --eval "(require 'org)" --eval "(org-babel-tangle-file \"harness/tui-client.org\")" >/dev/null 2>&1 || true
for f in harness/*.org skills/*.org; do
if [ "$f" != "harness/manifest.org" ]; then
if [ "$f" != "harness/manifest.org" ] && [ "$f" != "harness/tui-client.org" ]; then
echo "Tangling $f..."
emacs -Q --batch --eval "(require 'org)" --eval "(org-babel-tangle-file \"$f\")" >/dev/null 2>&1 || true
fi