aboutsummaryrefslogtreecommitdiffstats
path: root/hyperterm/core/git.sh
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-08-22 21:44:20 -0500
committerJesús <heckyel@hyperbola.info>2021-08-22 21:44:20 -0500
commit47837163c24f5b88b2194fa92ef86e767b409258 (patch)
tree3783515f0cd90742798c49ae70664e4475273897 /hyperterm/core/git.sh
parent1355a7784ee79522ec9a49d7171e0257a2e813cf (diff)
downloadhyperterm-47837163c24f5b88b2194fa92ef86e767b409258.tar.lz
hyperterm-47837163c24f5b88b2194fa92ef86e767b409258.tar.xz
hyperterm-47837163c24f5b88b2194fa92ef86e767b409258.zip
fix if a bash variable is null
Diffstat (limited to 'hyperterm/core/git.sh')
-rw-r--r--hyperterm/core/git.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperterm/core/git.sh b/hyperterm/core/git.sh
index 6cf9854..881df2e 100644
--- a/hyperterm/core/git.sh
+++ b/hyperterm/core/git.sh
@@ -150,7 +150,7 @@ ___upstream="$(git rev-parse --symbolic-full-name --abbrev-ref "@{upstream}" 2>
function _git_behind_count() {
local __behind_count
- if [[ -s $___upstream ]]; then
+ if [[ ! -z $___upstream ]]; then
__behind_count="$(git rev-list --left-right --count "$___upstream"...HEAD | cut -f1 2> /dev/null)"
case $__behind_count in
0) echo -n '';;
@@ -161,7 +161,7 @@ function _git_behind_count() {
function _git_ahead_count() {
local __ahead_count
- if [[ -s $___upstream ]]; then
+ if [[ ! -z $___upstream ]]; then
__ahead_count="$(git rev-list --left-right --count "$___upstream"...HEAD | cut -f2 2> /dev/null)"
case $__ahead_count in
0) echo -n '';;