Merge pull request #303 from icenine451/cooker-0.7.0b-icenine451

While loop troubleshooting
This commit is contained in:
icenine451 2023-04-13 15:03:23 -04:00 committed by GitHub
commit c2e9dba3b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
rd_manifest=${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml
sha_update_list=${GITHUB_WORKSPACE}/automation_tools/sha_update_list.cfg
counter=5
echo "Manifest location: $rd_manifest"
echo "Hash update list location: $sha_update_list"
@ -13,6 +14,12 @@ echo "Update list contents:"
cat "$sha_update_list"
echo
while [ $counter -gt 0 ]
do
echo $counter
counter=$(( $counter - 1 ))
done
while IFS="^" read -r url placeholder
do
echo