From 19b32a7cdcce6d34cb2637c5bf448bd384c3a322 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 30 Jan 2026 17:00:39 -0600 Subject: [PATCH] run-release command --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 2ce3275..d45e02a 100644 --- a/justfile +++ b/justfile @@ -9,6 +9,8 @@ sbuild: RUST_LOG=debug sccache cargo build run: RUST_LOG=debug cargo run -- {{ui}} +run-release: + RUST_LOG=debug cargo run --release -- {{ui}} run-file: RUST_LOG=debug cargo run -- {{ui}} {{file}} srun: @@ -22,6 +24,7 @@ profile: alias b := build alias r := run +alias rr := run-release alias rf := run-file alias sr := srun alias c := clean