diff options
author | David Bauer <mail@david-bauer.net> | 2020-08-09 00:33:57 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-09-11 17:35:19 +0200 |
commit | fe82ea049e521043d88c036ecdda4d2be6a14f1c (patch) | |
tree | 555ce900fc20c071137b98c2825e8e6b526294d8 | |
parent | e087bb5bd7d700c1de91395d62a3923e6305cc46 (diff) | |
download | upstream-fe82ea049e521043d88c036ecdda4d2be6a14f1c.tar.gz upstream-fe82ea049e521043d88c036ecdda4d2be6a14f1c.tar.bz2 upstream-fe82ea049e521043d88c036ecdda4d2be6a14f1c.zip |
scripts: download.pl: fix indentation
Signed-off-by: David Bauer <mail@david-bauer.net>
-rwxr-xr-x | scripts/download.pl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index dd49255367..cdccae133f 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -243,7 +243,7 @@ foreach my $mirror (@ARGV) { push @mirrors, "ftp://ftp.riken.jp/Linux/kernel.org/$dir"; push @mirrors, "ftp://www.mirrorservice.org/sites/ftp.kernel.org/pub/$dir"; } - } elsif ($mirror =~ /^\@GNOME\/(.+)$/) { + } elsif ($mirror =~ /^\@GNOME\/(.+)$/) { push @mirrors, "https://mirror.csclub.uwaterloo.ca/gnome/sources/$1"; push @mirrors, "http://ftp.acc.umu.se/pub/GNOME/sources/$1"; push @mirrors, "http://ftp.kaist.ac.kr/gnome/sources/$1"; @@ -252,8 +252,7 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1"; push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1"; push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1"; - } - else { + } else { push @mirrors, $mirror; } } |