fix network interface detection on macos (#2170)

This was broken in #2088.
pull/2174/head
Roman Perepelitsa 2 years ago
parent 21e89cb61d
commit f03d917fb0

@ -5744,7 +5744,7 @@ function _p9k_prompt_net_iface_async() {
# netstat -inbI en0
local iface ip line var
typeset -a iface2ip ips ifaces
if (( $+commands[ip] )); then
if (( $+commands[ip] )) && [[ $+commands[ifconfig] == 0 || $OSTYPE != linux* ]]; then
for line in ${(f)"$(command ip -4 a show 2>/dev/null)"}; do
if [[ $line == (#b)<->:[[:space:]]##([^:]##):[[:space:]]##\<([^\>]#)\>* ]]; then
[[ ,$match[2], == *,UP,* ]] && iface=$match[1] || iface=

Loading…
Cancel
Save