Merge pull request #473 from zikes/patch-1

Only show go_version segment if inside GOPATH
This commit is contained in:
Ben Hilburn 2017-05-22 21:55:49 -04:00 committed by GitHub
commit b63bf00113
2 changed files with 48 additions and 2 deletions

View file

@ -754,9 +754,11 @@ prompt_docker_machine() {
# GO prompt
prompt_go_version() {
local go_version
local go_path
go_version=$(go version 2>/dev/null | sed -E "s/.*(go[0-9.]*).*/\1/")
go_path=$(go env GOPATH 2>/dev/null)
if [[ -n "$go_version" ]]; then
if [[ -n "$go_version" && "${PWD##$go_path}" != "$PWD" ]]; then
"$1_prompt_segment" "$0" "$2" "green" "255" "$go_version"
fi
}