From 3a114224c0302d89cd93984ad56288c05f51458b Mon Sep 17 00:00:00 2001 From: eoli3n Date: Wed, 16 Feb 2022 10:32:57 +0100 Subject: [PATCH] fix archive test --- init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init b/init index 93bc707..5190713 100755 --- a/init +++ b/init @@ -52,10 +52,10 @@ init_archlinux_archive () { # Returns False if repo does not exists # Set repo - repo="https://archive.archlinux.org/repos/$1" + repo="https://archive.archlinux.org/repos/$1/" # If repo exists, set it - curl -s "$repo" && echo "Server=$repo/\$repo/os/\$arch" > /etc/pacman.d/mirrorlist + curl -s "$repo" && echo "Server=$repo\$repo/os/\$arch" > /etc/pacman.d/mirrorlist }