From 5479e5465b25fefcb970e416193b693114d5f2cd Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Sat, 15 Nov 2025 10:39:00 +0100 Subject: [PATCH] fix: remove flags from arg --- cmd/config_set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/config_set.go b/cmd/config_set.go index 84ad8d02..26573a3a 100644 --- a/cmd/config_set.go +++ b/cmd/config_set.go @@ -101,7 +101,7 @@ you want to change. Other options will remain unchanged.`, } // check if there are new flags for existing auth method - set.AuthMethod, auther, err = getAuthentication(flags, hasAuth, set, auther) + set.AuthMethod, auther, err = getAuthentication(hasAuth, set, auther) if err != nil { return err }