fix: ignore linting error

This commit is contained in:
Henrique Dias 2025-06-26 21:12:24 +02:00
parent 4d830f707f
commit e735491c57
No known key found for this signature in database

View File

@ -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