Tomas Bjerre
10/11/2024, 1:01 PMid
:s not being unique... I made a little script that we can run to remove them:
find . -name "*.json" | while read -r file; do
echo Patching $file
jq 'del(.id, .uuid)' "$file" > "$file.temp" && mv "$file.temp" "$file"
done
Perhaps more users are in similar situation and it can be mentioned in the documentation somewhere? Or they will have to ask Chatgpt themselves =)Lee Turner
10/11/2024, 1:04 PMTomas Bjerre
10/11/2024, 1:42 PMLee Turner
10/11/2024, 1:43 PM