Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: erikbaranowski <[email protected]>
  • Loading branch information
erikbaranowski committed Dec 15, 2023
1 parent b00d236 commit 011904a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmd/internal/flowmode/cmd_convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,10 @@ func parseExtraArgs(extraArgs string) ([]string, error) {
// This can be improved if we preallocate the array, however we won't
// know the final length without analyzing the arguments so there
// is some complexity in doing so.
fs.Parse(arguments)
err := fs.Parse(arguments)
if err != nil {
return nil, err
}
}
}

Expand Down

0 comments on commit 011904a

Please sign in to comment.