diff options
-rw-r--r-- | setup-apkrepos.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/setup-apkrepos.in b/setup-apkrepos.in index 5e0131a..1956b19 100644 --- a/setup-apkrepos.in +++ b/setup-apkrepos.in @@ -38,11 +38,9 @@ add_random_mirror() { time_cmd() { local start=$(cut -d ' ' -f1 /proc/uptime) - $@ >&2 - local ret=$? + $@ >&2 || return awk -v start=$start -v end=$(cut -d ' ' -f1 /proc/uptime) \ 'BEGIN {print end - start; exit}' - return $ret } find_fastest_mirror() { @@ -51,8 +49,10 @@ find_fastest_mirror() { for url in $MIRRORS; do local time=$(time_cmd apk update --quiet $apk_root_opt \ --repository $url/edge/main \ - --repositories-file /dev/null) || continue - echo "$time $url" + --repositories-file /dev/null) + if [ -n "$time" ]; then + echo "$time $url" + fi done | awk ' { if (!current) { current=$1 |