Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
webbnh committed Apr 26, 2024
1 parent 1df2c12 commit d945092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cliwrapper/cliwrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (p *cliWrapper) KillAndClean(containerName string) error {
func (p *cliWrapper) getPodmanCmd(cmdArgs ...string) *exec.Cmd {
commandArgs := p.runtimeContext
commandArgs = append(commandArgs, cmdArgs...)
return exec.Command(p.podmanFullPath, commandArgs...)
return exec.Command(p.podmanFullPath, commandArgs...) //#nosec G204 -- command line is internally generated
}

func (p *cliWrapper) runPodmanCmd(msg string, cmdArgs ...string) (string, error) {
Expand Down

0 comments on commit d945092

Please sign in to comment.