From 4f126bab9001af5d5e0d77da2a18c4a882c91947 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Thu, 17 Apr 2025 12:06:57 +0200 Subject: [PATCH] :memo: [shared] Add justfile comments --- justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index c7609de..f20e2d5 100644 --- a/justfile +++ b/justfile @@ -1,25 +1,30 @@ +# List all receipes default: @just --list +# Format all files in repo fmt: treefmt --on-unmatched info +# Build a specific host but don't activate it. Host must use same system as target system build HOST: git add . just fmt nh os build . -H {{HOST}} - +# Switch to new config, but don't add to bootloader test *FLAGS: git add . just fmt nh os test . {{FLAGS}} +# Switch to new config and add to bootloader switch *FLAGS: git add . just fmt nh os switch . {{FLAGS}} +# Switch to new config and add to bootloader without formatting or adding to git switch-now *FLAGS: nh os switch . {{FLAGS}}