aboutsummaryrefslogtreecommitdiff
path: root/src/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Justfile')
-rw-r--r--src/Justfile4
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