Valid pacman configuration files do not have to start with a hash for that line
to be a comment, neither do directives need to be in column 0.

Signed-off-by: Andres P <[email protected]>
---
 scripts/rankmirrors.sh.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/rankmirrors.sh.in b/scripts/rankmirrors.sh.in
index 283fb46..6170a22 100644
--- a/scripts/rankmirrors.sh.in
+++ b/scripts/rankmirrors.sh.in
@@ -184,9 +184,9 @@ fi
 
 timesarray=()
 for line in  "${linearr...@]}"; do
-       if [[ $line =~ ^# ]]; then
+       if [[ $line =~ ^[[:space:]]*# ]]; then
                [[ $TIMESONLY ]] || echo $line
-       elif [[ $line =~ ^Server ]]; then
+       elif [[ $line =~ ^[[:space:]]*Server ]]; then
 
                # Getting values and times and such
                server="${line#*= }"
-- 
1.7.1


Reply via email to