cardano-foundation / cardano-wallet

HTTP server & command-line for managing UTxOs and HD wallets in Cardano.
Apache License 2.0
763 stars 211 forks source link

[ADP-3358] Fix swagger to JSON transformation in `update-bump.sh` #4583

Closed jonathanknowles closed 4 months ago

jonathanknowles commented 4 months ago

This PR fixes the transformation from swagger to JSON format in update-bump.sh.

When calling jq, we now use -o=json instead of -j.

The -j flag is shortform for --tojson, which has been deprecated:

Flag --tojson has been deprecated, please use -o=json instead

Example

https://github.com/cardano-foundation/cardano-wallet/actions/runs/9026615038/job/24804201846#step:5:8

Issue

ADP-3358