diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2015-11-05 15:57:00 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2015-11-05 15:57:00 +0100 |
commit | bc014fd8c84585b7cc9f9f264c0b1f7d05974eff (patch) | |
tree | d5925a778dfa285963cd1b98a2ea901aa36a0949 | |
parent | 9fb20db2a45fd28c3a86e4b21d0c320cd72b016c (diff) | |
download | xtools-bc014fd8c84585b7cc9f9f264c0b1f7d05974eff.tar.gz xtools-bc014fd8c84585b7cc9f9f264c0b1f7d05974eff.tar.xz xtools-bc014fd8c84585b7cc9f9f264c0b1f7d05974eff.zip |
xrecent: use .eu urls.
-rwxr-xr-x | xrecent | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xrecent b/xrecent index 8fb12d2..fd9ec21 100755 --- a/xrecent +++ b/xrecent @@ -1,15 +1,15 @@ #!/bin/sh # xrecent [REPOURL|XBPS_ARCH] - list packages in repo ordered by build date -repo=http://repo.voidlinux.net/current/ +repo=http://repo.voidlinux.eu/current/ case "$1" in */*) repo=$1;; *-musl) - repo=http://muslrepo.voidlinux.net/current/ + repo=http://muslrepo.voidlinux.eu/current/ export "XBPS_ARCH=$1";; ?*) - repo=http://repo.voidlinux.net/current/ + repo=http://repo.voidlinux.eu/current/ export "XBPS_ARCH=$1";; esac |