From 10601c8ea74a58bd3e0fff3d98256eb7dd459442 Mon Sep 17 00:00:00 2001 From: "@RandyMcMillan" Date: Fri, 22 Nov 2024 16:37:35 -0500 Subject: [PATCH] justfile: add default command Update the `justfile` by adding a `default` command that lists all the available commands. This is to make it easier for users to see what commands they can use. Closes https://github.com/rust-nostr/nostr/pull/643 Signed-off-by: Yuki Kishimoto --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index cb5e9aebd..1f8179ce6 100755 --- a/justfile +++ b/justfile @@ -2,6 +2,9 @@ set windows-shell := ["powershell.exe", "-NoLogo", "-Command"] +default: + @just --list + # Build nostr CLI (release) cli: cargo build -p nostr-cli --release