From 23bd8f67155081d707d4799393d3b1e2bebeaa34 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Tue, 24 Jun 2025 21:43:44 +0200 Subject: [PATCH] fix: remove incorrect default for password flag --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 125f443d..fbd27541 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -48,7 +48,7 @@ func init() { persistent.StringP("database", "d", "./filebrowser.db", "database path") flags.Bool("noauth", false, "use the noauth auther when using quick setup") flags.String("username", "admin", "username for the first user when using quick config") - flags.String("password", "", "hashed password for the first user when using quick config (default \"admin\")") + flags.String("password", "", "hashed password for the first user when using quick config") addServerFlags(flags) }