mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
Fix go test
If no GO is available, there should be no output.
This commit is contained in:
parent
3407494d7d
commit
7efc6e4187
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ prompt_dir() {
|
|||
# GO prompt
|
||||
prompt_go_version() {
|
||||
local go_version
|
||||
go_version=$(go version 2>&1 | sed -E "s/.*(go[0-9.]*).*/\1/")
|
||||
go_version=$(go version 2>/dev/null | sed -E "s/.*(go[0-9.]*).*/\1/")
|
||||
|
||||
if [[ -n "$go_version" ]]; then
|
||||
"$1_prompt_segment" "$0" "$2" "green" "255" "$go_version"
|
||||
|
|
Loading…
Reference in a new issue