mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 21:45:39 +00:00
While loop troubleshooting
This commit is contained in:
parent
923f69c920
commit
b3e750cb86
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue