From a6831cb7e818df3471f09a96da52a61effb1cba1 Mon Sep 17 00:00:00 2001 From: EmilySeville7cfg Date: Thu, 24 Nov 2022 21:00:35 +1000 Subject: [PATCH] Fix quoting in `arch.sh` --- util/arch.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/arch.sh b/util/arch.sh index 894bd91..f08d55e 100755 --- a/util/arch.sh +++ b/util/arch.sh @@ -2,12 +2,12 @@ . ./common.sh -MIRROR=http://mirror.ams1.nl.leaseweb.net/archlinux/ +MIRROR="http://mirror.ams1.nl.leaseweb.net/archlinux/" case "$1" in current) - index arch --sys arch --mirror $MIRROR --repo core - index arch --sys arch --mirror $MIRROR --repo extra - index arch --sys arch --mirror $MIRROR --repo community + index arch --sys arch --mirror "$MIRROR" --repo core + index arch --sys arch --mirror "$MIRROR" --repo extra + index arch --sys arch --mirror "$MIRROR" --repo community ;; esac