diff options
-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 |