From 826edef3586ae9913ac37f348563738d92a821e5 Mon Sep 17 00:00:00 2001 From: Matthieu Lamalle Date: Mon, 18 Nov 2024 11:05:17 +0100 Subject: [PATCH] =?UTF-8?q?fix=20:=20suppression=20de=20append=20inutile,?= =?UTF-8?q?=20remont=C3=A9=20par=20go=20vet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/command/server/admin/run.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/command/server/admin/run.go b/internal/command/server/admin/run.go index a573ce8..17b8362 100644 --- a/internal/command/server/admin/run.go +++ b/internal/command/server/admin/run.go @@ -17,9 +17,7 @@ const ( ) func RunCommand() *cli.Command { - flags := append( - common.Flags(), - ) + flags := common.Flags() return &cli.Command{ Name: "run", -- 2.17.1