diff options
author | dozens | 2024-06-08 20:58:40 -0600 |
---|---|---|
committer | dozens | 2024-06-14 21:52:00 -0600 |
commit | 1250f9f057c2e21a0edab87f0a6003a25decd1b7 (patch) | |
tree | b71dbcf18354ebc59bec48ae926654bdf3c0a59b /justfile | |
parent | 91b1662302c14cf84ca8b90c1f3ec20a585f67a5 (diff) |
feat: add flying phase
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/justfile b/justfile index e5fa402..4827cef 100644 --- a/justfile +++ b/justfile @@ -9,3 +9,7 @@ test: # build expect scripts expects: for f in test/*.dat; do awk -f test/test.awk $f > ${f/dat/expect}; done + +# 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 |