Skip to content

Commit

Permalink
fix: remove hardcoded nosuffix byte output in vgs
Browse files Browse the repository at this point in the history
Signed-off-by: Jakob Möller <jmoller@redhat.com>
  • Loading branch information
jakobmoellerdev committed Jul 29, 2024
1 parent c5b4dac commit bd3b96f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (c *client) VGs(ctx context.Context, opts ...VGsOption) ([]*VolumeGroup, er
res := new(vgReport)

args := []string{
"vgs", "--units", "b", "--nosuffix", "--reportformat", "json",
"vgs", "--reportformat", "json",
}
argsFromOpts, err := VGsOptionsList(opts).AsArgs()
if err != nil {
Expand Down

0 comments on commit bd3b96f

Please sign in to comment.