correct RSS/all.json

This commit is contained in:
fred 2023-12-30 14:20:26 +01:00
parent a8990ce2df
commit 002d9ff599
1 changed files with 6 additions and 3 deletions

View File

@ -338,9 +338,12 @@ echo "<meta http-equiv=\"refresh\" content=\"0; url='/ipfs/${ZCHAIN}' />" > ~/.z
data=$(jq '.' "$file") data=$(jq '.' "$file")
json_array+=("$data") json_array+=("$data")
done done
# Convert the array to a single JSON object temp_file=$(mktemp)
merged_json=$(jq -n '{"data": [ $json_array[] ]}') printf '%s\n' "${json_array[@]}" > "$temp_file"
echo "$merged_json" > ~/.zen/tmp/${MOATS}/${UMAP}/RSS/all.json # Use jq to read the array from the temporary file and create the merged JSON
jq -n --slurpfile array "$temp_file" '{"data": $array}' > ~/.zen/tmp/${MOATS}/${UMAP}/RSS/all.json
# Remove the temporary file
rm "$temp_file"
############################################################## ##############################################################
############################ PUBLISHING UMAP ############################ PUBLISHING UMAP