mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
Add check for empty lines
This commit is contained in:
parent
de7c189a36
commit
7a121068e7
|
@ -15,7 +15,7 @@ echo
|
||||||
|
|
||||||
while IFS="^" read -r url placeholder
|
while IFS="^" read -r url placeholder
|
||||||
do
|
do
|
||||||
if [[ ! $url == "#"* ]]; then
|
if [[ ! "$url" == "#"* ]] && [[ ! -z "$url"]]; then
|
||||||
echo
|
echo
|
||||||
echo "Placeholder text: $placeholder"
|
echo "Placeholder text: $placeholder"
|
||||||
echo "URL to hash: $url"
|
echo "URL to hash: $url"
|
||||||
|
|
Loading…
Reference in a new issue