From 3b3adc83c2c9d31e293db8683da4567127534d89 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 29 Dec 2023 04:57:16 -1000 Subject: [PATCH] ;just: cleanup --- Justfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Justfile b/Justfile index ad6b3caa7..8369a63b0 100644 --- a/Justfile +++ b/Justfile @@ -39,8 +39,8 @@ HELPERS: help set export := true -WATCHEXEC := 'watchexec -q --stop-timeout=1' -TODAY := `date +%Y-%m-%d` +WATCHEXEC := 'watchexec --timings' # and/or: -q --bell --stop-timeout=1 +#TODAY := `date +%Y-%m-%d` # just := "just -f " + justfile() # Use this justfile from within its directory, otherwise we must write {{ just }} everywhere. @@ -559,13 +559,13 @@ BENCHEXES := 'hledger' # tools/progressionbench -- -t png -k png # show throughput at various data sizes with the given hledger executable (requires samplejournals) -@throughput HLEDGEREXE: +@throughput EXE: echo date: `date` echo system: `uname -a` - echo executable: {{ HLEDGEREXE }} - echo version: `{{ HLEDGEREXE }} --version` + echo executable: {{ EXE }} + echo version: `{{ EXE }} --version` for n in 1000 2000 3000 4000 5000 6000 7000 8000 9000 10000 100000 ; do \ - printf "%6d txns: " $n; {{ HLEDGEREXE }} stats -f examples/${n}x1000x10.journal | tail -1; \ + printf "%6d txns: " $n; {{ EXE }} stats -f examples/${n}x1000x10.journal | tail -1; \ done date