diff options
author | Aria Shrimpton <me@aria.rip> | 2024-02-06 09:26:05 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-02-06 09:26:05 +0000 |
commit | 39351a55e3e9a7838ac55a1111cfca2a60cdddcc (patch) | |
tree | 08cefaffff79203a1d3df42594cd641fca5b797a /src | |
parent | c7d0ecf281debdaaf63989d7385ae5f0990256e8 (diff) |
fix wrong binary name in justfile
Diffstat (limited to 'src')
-rw-r--r-- | src/Justfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Justfile b/src/Justfile index 1dd17f6..e2d8e4c 100644 --- a/src/Justfile +++ b/src/Justfile @@ -8,7 +8,7 @@ proj := "std::vec::Vec std::collections::LinkedList" export RUST_LOG := "debug" run-all-tests: - which candelabra 2>/dev/null || cargo build + which candelabra-cli 2>/dev/null || cargo build rm -fr {{target_dir / "candelabra"}} echo "Candelabra Path: {{candelabra}}" |