chg: [jq_all_the_things] display if an UUID is invalid

pull/378/head
Alexandre Dulaunoy 2022-12-11 13:04:30 +01:00
parent 858e485263
commit a40c08cf2c
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ do
cat ${dir} | jq . >/dev/null
rc=$?
if [[ $rc != 0 ]]; then exit $rc; fi
cat ${dir} | jq -r .uuid | uuidparse
done
set -e