]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
make sure mirror selection is run at least once per repo
authorRudolf Polzer <divverent@alientrap.org>
Sun, 21 Nov 2010 15:28:33 +0000 (16:28 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Sun, 21 Nov 2010 15:29:16 +0000 (16:29 +0100)
all

diff --git a/all b/all
index 9e4dd0dc5043882a168f9cd3032e2dc948cfbf14..051a5e8e5ace91e81422c302d0c33fdcf54910a5 100755 (executable)
--- a/all
+++ b/all
@@ -395,7 +395,7 @@ bestmirror()
                if t=`mirrorspeed "$m"`; then
                        if [ -n "$t" ]; then
                                tt=$(($t$op)) # fudge factor
                if t=`mirrorspeed "$m"`; then
                        if [ -n "$t" ]; then
                                tt=$(($t$op)) # fudge factor
-                               msg "$m -> $t$op=$tt ticks"
+                               msg "$m -> $t$op = $tt ticks"
                                if [ -z "$bestt" ] || [ "$tt" -lt "$bestt" ]; then
                                        bestin=$in
                                        bestt=$tt
                                if [ -z "$bestt" ] || [ "$tt" -lt "$bestt" ]; then
                                        bestin=$in
                                        bestt=$tt
@@ -536,6 +536,14 @@ case "$cmd" in
                        fi
                        shift
                done
                        fi
                        shift
                done
+               case "$location" in
+                       current)
+                               if [ x"`git config xonotic.all.mirrorselection 2>/dev/null || true`" != x"done" ]; then
+                                       git config xonotic.all.mirrorselection done
+                                       location=best
+                               fi
+                               ;;
+               esac
                case "$location" in
                        best)
                                newbase=`$ECHO "$base" | sed "s,://\(.*\.\)\?git.xonotic.org/,:// .git.xonotic.org/,"`
                case "$location" in
                        best)
                                newbase=`$ECHO "$base" | sed "s,://\(.*\.\)\?git.xonotic.org/,:// .git.xonotic.org/,"`