Maybe fixed now

This commit is contained in:
icenine451 2023-04-13 16:03:46 -04:00
parent ecd782c1bd
commit f8bf91c25c
2 changed files with 10 additions and 8 deletions

View file

@ -1,3 +1,3 @@
# The proper format for this file is # The proper format for this file is
# URL^PLACEHOLDERTEXT # URL^PLACEHOLDERTEXT
https://buildbot.libretro.com/assets/cores/DOOM/Doom%20%28Shareware%29.zip^DOOMSHA https://buildbot.libretro.com/assets/cores/DOOM/Doom%20%28Shareware%29.zip^DOOMSHAPLACEHOLDER

View file

@ -15,11 +15,13 @@ echo
while IFS="^" read -r url placeholder while IFS="^" read -r url placeholder
do do
echo if [[ ! $url == "#"* ]]; then
echo "Placeholder text: $placeholder" echo
echo "URL to hash: $url" echo "Placeholder text: $placeholder"
echo echo "URL to hash: $url"
hash=$(curl -sL "$url" | sha256sum | cut -d ' ' -f1) echo
echo "Hash found: $hash" hash=$(curl -sL "$url" | sha256sum | cut -d ' ' -f1)
sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest echo "Hash found: $hash"
/bin/sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest
fi
done < "$sha_update_list" done < "$sha_update_list"