Skip to content

Commit

Permalink
hotfix: json output parser (critical)
Browse files Browse the repository at this point in the history
  • Loading branch information
arti-shalb committed Sep 25, 2024
1 parent 8bb6a4c commit 9c85c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/units/shell/common/parsers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func (u *Unit) JSONOutputParser(in string, out *project.UnitLinksT) error {
}
outTmp := make(map[string]interface{})

err := utils.JSONDecode([]byte(in), outTmp)
err := utils.JSONDecode([]byte(in), &outTmp)
if err != nil {
return err
}
Expand Down

0 comments on commit 9c85c32

Please sign in to comment.