From 9ffbe09d8d060c4041b56696b6d6e3701b2f93ba Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Sat, 10 Jan 2026 20:24:58 +1300 Subject: [PATCH] main: indicate interactive features --- main.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 285fbce..0e73a9c 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,14 @@ func main() { mediaDir := args[0] - log.Printf("This is records %s\n", version) + { + interactive := "" + if util.Interactive() { + interactive = ", running with interactive features" + } + log.Printf("This is records %s%s", version, interactive) + } + log.Println("https://git.baxters.nz/jeremy/records") musicindex.Init(mediaDir, *regenerate)