mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 07:25:38 +00:00
Maybe fixed now
This commit is contained in:
parent
ecd782c1bd
commit
f8bf91c25c
|
@ -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
|
|
@ -15,11 +15,13 @@ echo
|
||||||
|
|
||||||
while IFS="^" read -r url placeholder
|
while IFS="^" read -r url placeholder
|
||||||
do
|
do
|
||||||
|
if [[ ! $url == "#"* ]]; then
|
||||||
echo
|
echo
|
||||||
echo "Placeholder text: $placeholder"
|
echo "Placeholder text: $placeholder"
|
||||||
echo "URL to hash: $url"
|
echo "URL to hash: $url"
|
||||||
echo
|
echo
|
||||||
hash=$(curl -sL "$url" | sha256sum | cut -d ' ' -f1)
|
hash=$(curl -sL "$url" | sha256sum | cut -d ' ' -f1)
|
||||||
echo "Hash found: $hash"
|
echo "Hash found: $hash"
|
||||||
sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest
|
/bin/sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest
|
||||||
|
fi
|
||||||
done < "$sha_update_list"
|
done < "$sha_update_list"
|
Loading…
Reference in a new issue