summary refs log tree commit diff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile9
1 files changed, 7 insertions, 2 deletions
diff --git a/justfile b/justfile
index 4827cef..825aa93 100644
--- a/justfile
+++ b/justfile
@@ -4,7 +4,8 @@ default:
 
 # run tests
 test:
-  for f in lib/*.test.fnl; do fennel $f | faucet; done
+  #!/bin/zsh
+  for f in **/*.test.fnl; do fennel $f | faucet; done
 
 # build expect scripts
 expects:
@@ -12,4 +13,8 @@ expects:
 
 # make the project
 project:
-  awk '$0 ~ /^---$/ && times++ < 2 { a=!a;next; } a' doc/tilde30.t | recfmt -f doc/tilde30.t | awk '$0 ~ /^---$/ { times++;next } times > 1' | nroff -ms -Tascii
+  awk '$0 ~ /^---$/ && times++ < 2 { a=!a;next; } a' doc/tilde30.t \
+  | recfmt -f doc/tilde30.t \
+  | awk '$0 ~ /^---$/ { times++;next } times > 1' \
+  | nroff -ms -Tascii \
+  | ssh tilde 'cat > .project'