Skip to content

Commit

Permalink
cmd/exec: Update ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tkw1536 committed Nov 17, 2024
1 parent 557a7cd commit 8070e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (e exe) runRepo(io stream.IOStream, repo string) error {
// but actually return other error properly!
if ee, ok := err.(*exec.ExitError); ok {
return exit.Error{
ExitCode: exit.ExitCode(ee.ExitCode()), // #nosec G115 exit status guaranteed to fit into uint8
ExitCode: exit.ExitCode(ee.ExitCode()), // #nosec G115 -- exit status guaranteed to fit into uint8
Message: ee.Error(),
}
}
Expand Down

0 comments on commit 8070e25

Please sign in to comment.