From c8bd857edef63672d6f27c4168e4f8252d5ab924 Mon Sep 17 00:00:00 2001 From: Peter Aronoff Date: Sun, 17 Dec 2023 19:32:18 -0500 Subject: [PATCH] fix: s/SHOW_UPSTREAM/SHOW_UPSTREAM_NAME/ --- git-prompt.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-prompt.zsh b/git-prompt.zsh index ba08f66..e6c4308 100644 --- a/git-prompt.zsh +++ b/git-prompt.zsh @@ -161,7 +161,7 @@ function _zsh_git_prompt_git_status() { print THEME_SEPARATOR; # Section two: upstream - if (SHOW_UPSTREAM != "" && length(upstream) > 0) { + if (SHOW_UPSTREAM_NAME != "" && length(upstream) > 0) { gsub("%", "%%", upstream); print upstream; print THEME_SEPARATOR;