diff options
Diffstat (limited to 'etc/pacman.d/gen-mirrorlist.sh')
-rwxr-xr-x | etc/pacman.d/gen-mirrorlist.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/etc/pacman.d/gen-mirrorlist.sh b/etc/pacman.d/gen-mirrorlist.sh deleted file mode 100755 index cbb6362c..00000000 --- a/etc/pacman.d/gen-mirrorlist.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# gen-mirrorlist.sh -# There's absolutely no way to make autoconf do this, so instead, autoconf will -# call this script - simple enough. - - -REPOS="current extra unstable release community" - -for i in $REPOS; do - rm -f $i - cat mirrorlist | sed "s|@@REPO@@|$i|g" > $i -done |