mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-23 02:35:10 +00:00
ci: remove goconst
This commit is contained in:
parent
1d494ff315
commit
8b8fb3343f
6 changed files with 5 additions and 11 deletions
|
|
@ -17,7 +17,8 @@ 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) //nolint:gocritic
|
||||
command = append(command, s.Shell...)
|
||||
command = append(command, raw)
|
||||
}
|
||||
|
||||
return command, name, nil
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue