From e4117d8532b17ab7bb09bb697e607a570d921dd7 Mon Sep 17 00:00:00 2001 From: jcstill <31301328+jcstill@users.noreply.github.com> Date: Mon, 18 Sep 2017 14:34:59 -0700 Subject: [PATCH] wlan0 Error Typo If it's an error.... --- wifi/check_wifi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wifi/check_wifi.sh b/wifi/check_wifi.sh index 47bf13a..ffb069a 100755 --- a/wifi/check_wifi.sh +++ b/wifi/check_wifi.sh @@ -22,7 +22,7 @@ # check for presence of wlan0 if ! iwconfig 2>&1 | grep -q -E ".*wlan0.*"; then - echo "...[Error] now wlan0 interface found" + echo "...[Error] no wlan0 interface found" exit 1 fi exit 0