Submit processed files back to upload directory

This commit is contained in:
Ken Fallon 2024-12-27 14:01:20 +01:00
parent aae14715f5
commit e3e458b2d2

View File

@ -81,8 +81,9 @@ then
exit 5
fi
mv -v "${shownotes_json}" "${shownotes_json%.*}_origional.json"
jq '.' "${shownotes_json}" | sponge "${shownotes_json}"
jq '.' "${shownotes_json%.*}_origional.json" > "${shownotes_json}"
###################
# Get the media
@ -298,4 +299,10 @@ echo "{
\"notes\": \"${notes}\"
}" | tee "${post_show_json}"
echo "INFO: Uploading hpr${ep_num} from ${email_unpadded}"
echo ""
echo rsync -ave ssh --partial --progress ${processing_dir}/${dest_dir}/ ${source_dir}/
rsync -ave ssh --partial --progress ${processing_dir}/${dest_dir}/ ${source_dir}/
echo ""
curl --netrc --include --request POST "https://hub.hackerpublicradio.org/cms/add_show_json.php" --header "Content-Type: application/json" --data-binary "@${post_show_json}"