From e735491c57b12c3b19dd2e4b570723df78f4eb44 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Thu, 26 Jun 2025 21:12:24 +0200 Subject: [PATCH] fix: ignore linting error --- runner/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/parser.go b/runner/parser.go index 54336847..056ff4c8 100644 --- a/runner/parser.go +++ b/runner/parser.go @@ -17,7 +17,7 @@ func ParseCommand(s *settings.Settings, raw string) (command []string, name stri command = append(command, name) command = append(command, args...) } else { - command = append(s.Shell, raw) + command = append(s.Shell, raw) //nolint:gocritic } return command, name, nil