From 3c0738ba4325997895a4fda2ed62916d8a9188d6 Mon Sep 17 00:00:00 2001 From: Markus Krause Date: Sun, 6 Oct 2019 17:23:18 +0200 Subject: [PATCH] fix expansion inconsistency --- themes/githelpers.theme.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/githelpers.theme.bash b/themes/githelpers.theme.bash index c31e1ff5..2ee242df 100644 --- a/themes/githelpers.theme.bash +++ b/themes/githelpers.theme.bash @@ -127,7 +127,7 @@ function _git-remote-info { if [[ "${same_branch_name}" != "true" ]]; then remote_info="\${VCS_STATUS_REMOTE_NAME}" else - remote_info="${VCS_STATUS_REMOTE_NAME}/${VCS_STATUS_REMOTE_BRANCH}" + remote_info="\${VCS_STATUS_REMOTE_NAME}/\${VCS_STATUS_REMOTE_BRANCH}" fi elif [[ ${same_branch_name} != "true" ]]; then remote_info="\${VCS_STATUS_REMOTE_BRANCH}"