From 183e696c7af536485c72d6ad50ee6ec010f88bf1 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 2 Feb 2026 19:32:16 -0600 Subject: [PATCH] further tweaks --- justfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 6189f23..c2eb330 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,8 @@ ui := "-i" file := "~/dev/lumina-iced/test_presentation.lisp" +export RUSTC_WRAPPER=sccache + default: just --list build: @@ -13,8 +15,6 @@ run-release: RUST_LOG=debug cargo run --release -- {{ui}} run-file: RUST_LOG=debug cargo run -- {{ui}} {{file}} -srun: - RUSTC_WRAPPER=sccache RUST_LOG=debug cargo run -- {{ui}} clean: RUST_LOG=debug cargo clean test: @@ -26,5 +26,4 @@ alias b := build alias r := run alias rr := run-release alias rf := run-file -alias sr := srun alias c := clean