Install fail

This commit is contained in:
Félix Aime 2021-01-19 17:38:16 +01:00
parent e88996cb0c
commit 39a761366e

View File

@ -307,7 +307,7 @@ check_wlan_interfaces() {
# Check if they are recognized by ifconfig, if not unblock them with rfkill. # Check if they are recognized by ifconfig, if not unblock them with rfkill.
echo -e "\e[39m[+] Checking your wireless interfaces" echo -e "\e[39m[+] Checking your wireless interfaces"
for iface in $(ifconfig | grep -oE "(wlan[0-9]|wlx[a-f0-9]{12})"; do ifaces+=("$iface"); done for iface in $(ifconfig | grep -oE wlan[0-9]; do ifaces+=("$iface"); done
for iface in $(rfkill list | grep -oE phy[0-9]); do rfaces+=("$iface"); done for iface in $(rfkill list | grep -oE phy[0-9]); do rfaces+=("$iface"); done
if [[ "${#rfaces[@]}" > 1 ]]; then if [[ "${#rfaces[@]}" > 1 ]]; then