From 4b6a493e5310fe694932e462b0000e51ee7faec4 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 13 Dec 2022 20:39:32 +0100 Subject: [PATCH] replace double quotes with single quote --- usr/lib/archboot/installer/network.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/network.sh b/usr/lib/archboot/installer/network.sh index e5b59db88..4245292bc 100644 --- a/usr/lib/archboot/installer/network.sh +++ b/usr/lib/archboot/installer/network.sh @@ -54,11 +54,11 @@ do_wireless() { # expect hidden network has a WLAN_KEY #shellcheck disable=SC2143 if ! [[ "$(iwctl station "${INTERFACE}" get-networks | grep -w "${WLAN_SSID}" | cut -c 42-49 | grep -q 'open')" ]] || [[ "${WLAN_CONNECT}" == "connect-hidden" ]]; then - DIALOG --inputbox "Enter your KEY for SSID=\"${WLAN_SSID}\"" 8 50 "SecretWirelessKey" 2>"${ANSWER}" || return 1 + DIALOG --inputbox "Enter your KEY for SSID=\'${WLAN_SSID}\'" 8 50 "SecretWirelessKey" 2>"${ANSWER}" || return 1 WLAN_KEY=$(cat "${ANSWER}") fi # time to connect - DIALOG --infobox "Connection to SSID=\"${WLAN_SSID}\" with ${INTERFACE} ..." 3 70 + DIALOG --infobox "Connection to SSID=\'${WLAN_SSID}\' with ${INTERFACE} ..." 3 70 printk off if [[ -z "${WLAN_KEY}" ]]; then iwctl station "${INTERFACE}" "${WLAN_CONNECT}" "${WLAN_SSID}" > /dev/null 2>&1 && WLAN_AUTH="1"