1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-11-11 00:00:06 +00:00

pull upstream changes from gitstatus

This commit is contained in:
romkatv 2020-03-11 11:06:51 +01:00
parent 29cac7bdfb
commit 6d57d00f32

View file

@ -504,9 +504,8 @@ function gitstatus_start() {
local -aU os
case $kernel in
linux)
os=("${(L)$(uname -o)}") || return
[[ -n $os[1] ]] || return
[[ $os[1] == android ]] || os[1]=linux
os=("${(L)$(uname -o 2>/dev/null)}") || os=()
[[ $os[1] == android ]] || os=(linux)
;;
cygwin_nt-*) os=($kernel cygwin_nt-10.0);;
mingw|msys) os=($kernel msys_nt-10.0);;