diff options
author | filip <filip.komar@gmail.com> | 2016-09-11 11:04:19 +0200 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2016-09-11 11:04:19 +0200 |
commit | 64795b9c92335e5dffa1b13713c4dbe10be97177 (patch) | |
tree | 82be0b3642b4e973f5fa32120b8005f16272370c /mirrorlist | |
parent | 23f94e83c7fc5b0b14ff759db2339acf3148fd19 (diff) | |
download | www-64795b9c92335e5dffa1b13713c4dbe10be97177.tar www-64795b9c92335e5dffa1b13713c4dbe10be97177.tar.gz www-64795b9c92335e5dffa1b13713c4dbe10be97177.tar.bz2 www-64795b9c92335e5dffa1b13713c4dbe10be97177.tar.xz www-64795b9c92335e5dffa1b13713c4dbe10be97177.zip |
fixing error in mirrorlist URL path for source repositories (patch by Neal Gompa)
Diffstat (limited to 'mirrorlist')
-rw-r--r-- | mirrorlist/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrorlist/index.php b/mirrorlist/index.php index 2960a107a..d5d37b74f 100644 --- a/mirrorlist/index.php +++ b/mirrorlist/index.php @@ -33,7 +33,7 @@ $arraycheck =array( ); if ($source){ - $link = "MIRROR/distrib/$release/SRPMS/media/$section/$repo/"; + $link = "MIRROR/distrib/$release/SRPMS/$section/$repo/"; }elseif ($debug){ $link = "MIRROR/distrib/$release/$arch/media/debug/$section/$repo/"; }else{ |