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:
parent
8573855d39
commit
9dadc822e3
17 changed files with 22 additions and 10 deletions
Binary file not shown.
BIN
gitstatus/bin/gitstatusd-cygwin_nt-10.0-i686
Executable file
BIN
gitstatus/bin/gitstatusd-cygwin_nt-10.0-i686
Executable file
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
gitstatusd-cygwin_nt-10.0-x86_64
|
3
gitstatus/bin/gitstatusd-cygwin_nt-6.1-x86_64
Executable file
3
gitstatus/bin/gitstatusd-cygwin_nt-6.1-x86_64
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec "${0%-6.1-x86_64}-10.0-x86_64" "$@"
|
|
@ -1 +0,0 @@
|
|||
gitstatusd-cygwin_nt-10.0-x86_64
|
3
gitstatus/bin/gitstatusd-cygwin_nt-6.3-x86_64
Executable file
3
gitstatus/bin/gitstatusd-cygwin_nt-6.3-x86_64
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec "${0%-6.3-x86_64}-10.0-x86_64" "$@"
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
gitstatusd-freebsd-amd64
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
gitstatusd-linux-armv7l
|
3
gitstatus/bin/gitstatusd-linux-armv6l
Executable file
3
gitstatus/bin/gitstatusd-linux-armv6l
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec "${0%-armv6l}-armv7l" "$@"
|
Binary file not shown.
BIN
gitstatus/bin/gitstatusd-linux-i386
Executable file
BIN
gitstatus/bin/gitstatusd-linux-i386
Executable file
Binary file not shown.
3
gitstatus/bin/gitstatusd-linux-i586
Executable file
3
gitstatus/bin/gitstatusd-linux-i586
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec "${0%-i586}-i386" "$@"
|
3
gitstatus/bin/gitstatusd-linux-i686
Executable file
3
gitstatus/bin/gitstatusd-linux-i686
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec "${0%-i686}-i386" "$@"
|
Binary file not shown.
BIN
gitstatus/bin/gitstatusd-msys_nt-10.0-i686
Executable file
BIN
gitstatus/bin/gitstatusd-msys_nt-10.0-i686
Executable file
Binary file not shown.
Binary file not shown.
|
@ -503,15 +503,16 @@ function gitstatus_start() {
|
|||
elif [[ -n $GITSTATUS_DAEMON ]]; then
|
||||
local daemons=($_gitstatus_plugin_dir/{usrbin,bin}/$GITSTATUS_DAEMON)
|
||||
else
|
||||
local -aU os
|
||||
local -aU os=($kernel)
|
||||
case $kernel in
|
||||
linux)
|
||||
os=("${(L)$(uname -o 2>/dev/null)}") || os=()
|
||||
[[ $os[1] == android ]] || os=(linux)
|
||||
local os_flavor
|
||||
os_flavor="${(L)$(uname -o 2>/dev/null)}" && os+=(${(M)os_flavor:#android})
|
||||
;;
|
||||
cygwin_nt-*) os=($kernel cygwin_nt-10.0);;
|
||||
mingw*|msys*) os=($kernel msys_nt-10.0);;
|
||||
*) os=($kernel);;
|
||||
cygwin_nt-*) os+=(cygwin_nt-10.0);;
|
||||
msys_nt-*) os+=(msys_nt-10.0);;
|
||||
mingw32_nt-*) os+=(msys_nt-10.0);;
|
||||
mingw64_nt-*) os+=(msys_nt-10.0);;
|
||||
esac
|
||||
local arch
|
||||
arch="${(L)$(uname -m)}" || return
|
||||
|
|
Loading…
Reference in a new issue