Use '-n' instead of '-v' to test if WPA_COUNTRY is set

Apparently -v doesn't work in all shells.
pull/416/head
Raphael Nestler 2020-08-06 17:23:35 +02:00
parent 522ee197b9
commit 4203bc1519
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ fi
# Disable wifi on 5GHz models if WPA_COUNTRY is not set
mkdir -p "${ROOTFS_DIR}/var/lib/systemd/rfkill/"
if [ -v WPA_COUNTRY ]; then
if [ -n "$WPA_COUNTRY" ]; then
echo 0 > "${ROOTFS_DIR}/var/lib/systemd/rfkill/platform-3f300000.mmcnr:wlan"
echo 0 > "${ROOTFS_DIR}/var/lib/systemd/rfkill/platform-fe300000.mmcnr:wlan"
else