diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-01-18 12:43:34 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-01-18 12:43:34 +0300 |
commit | a652d49bd906e34a91bcc832461a15e75b1519c1 (patch) | |
tree | 24ddb01c61a32dc15a6620e6e1dd30be70e08712 | |
parent | 145b1a11039f5a7fed090bb304a62ef573fab543 (diff) | |
parent | 0a484d1d994de7febcdb1ffa9c9d2635c65c285d (diff) |
Merge branch 'master' into worker
-rw-r--r-- | internal/p10k.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh index f2894417..5a4e698f 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -6441,11 +6441,11 @@ _p9k_init_vcs() { (( $_POWERLEVEL9K_VCS_BACKENDS[(I)git] )) || return local gitstatus_dir=${_POWERLEVEL9K_GITSTATUS_DIR:-${__p9k_root_dir}/gitstatus} - if [[ -z $GITSTATUS_DAEMON && $_p9k_uname_m == i686 && -z $gitstatus_dir/bin/*-i686(-static|)(#qN) ]]; then + if [[ -z $GITSTATUS_DAEMON && $_p9k_uname_m == (i686|arm7l) && -z $gitstatus_dir/bin/*-$_p9k_uname_m(-static|)(#qN) ]]; then _p9k__gitstatus_disabled=1 >&2 echo -E - "${(%):-[%1FERROR%f]: %BPowerlevel10k%b is unable to use %Bgitstatus%b. Git prompt will be slow.}" >&2 echo -E - "" - >&2 echo -E - "${(%):-Reason: There is no %Bgitstatusd%b binary for i686 (32-bit Intel architecture).}" + >&2 echo -E - "${(%):-Reason: There is no %Bgitstatusd%b binary for $_p9k_uname_m (32-bit architecture).}" >&2 echo -E - "" >&2 echo -E - "${(%):-You can:}" >&2 echo -E - "" |