diff options
author | Aria Shrimpton <me@aria.rip> | 2024-02-26 10:25:36 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-02-26 10:25:36 +0000 |
commit | ca101abf7332b96fa6b5da3622eef3a7a0d18986 (patch) | |
tree | 72794b99e2dd6619d6a64ba1ec934f730f5aab74 | |
parent | 2d8a39173097827907609cf5304c28e6eb78e7a2 (diff) |
fix typo in justfile
-rw-r--r-- | src/Justfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Justfile b/src/Justfile index 7143446..f09651f 100644 --- a/src/Justfile +++ b/src/Justfile @@ -9,8 +9,8 @@ export RUST_LOG := "debug" run-all-tests: which candelabra-cli 2>/dev/null || cargo build - rm -fr {{target_dir / "candelabra"}} - rm -fr {{tests_dir / "target/criterion" + rm -fr {{target_dir}}/candelabra + rm -fr {{tests_dir}}/target/criterion echo "Candelabra Path: {{candelabra}}" @IMPLS=`{{candelabra}} list-library 2>&1 | cut -d ']' -f 2 | grep ::`; for impl in $IMPLS; do just cost-model $impl; done |