From 50f021921cf46a50ea2f506d32eca898818b1c40 Mon Sep 17 00:00:00 2001 From: Nyx <144965845+nnyyxxxx@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:39:32 -0400 Subject: [PATCH] Fix incorrectly placed quote (#511) Co-authored-by: nnyyxxxx --- tabs/system-setup/fedora/configure-dnf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabs/system-setup/fedora/configure-dnf.sh b/tabs/system-setup/fedora/configure-dnf.sh index af460545..2d043da2 100644 --- a/tabs/system-setup/fedora/configure-dnf.sh +++ b/tabs/system-setup/fedora/configure-dnf.sh @@ -5,7 +5,7 @@ configureDNF() { case $PACKAGER in dnf) - printf "%b\n" ${YELLOW}"Configuring DNF...${RC}" + printf "%b\n" "${YELLOW}Configuring DNF...${RC}" $ESCALATION_TOOL sed -i '/^max_parallel_downloads=/c\max_parallel_downloads=10' /etc/dnf/dnf.conf || echo 'max_parallel_downloads=10' >> /etc/dnf/dnf.conf echo "fastestmirror=True" | $ESCALATION_TOOL tee -a /etc/dnf/dnf.conf > /dev/null echo "defaultyes=True" | $ESCALATION_TOOL tee -a /etc/dnf/dnf.conf > /dev/null