diff --git a/usr/lib/archboot/installer/network.sh b/usr/lib/archboot/installer/network.sh index 67822815c..0d7f02e3e 100644 --- a/usr/lib/archboot/installer/network.sh +++ b/usr/lib/archboot/installer/network.sh @@ -54,7 +54,7 @@ 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