From 06037734cfd812a33c93308bf52af4bfff455475 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 12 Nov 2017 15:12:01 -0500 Subject: [PATCH 1/1] was simple undefined variable error --- scripts/rev_control/version_control.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 1ae3494a..08a9a07c 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -305,6 +305,8 @@ function do_careful_git_update() return 0 fi + local this_branch="$(my_branch_name)" + state=$(check_branch_state "$this_branch") echo "=> branch '$this_branch' state prior to remote update is: $state" @@ -313,9 +315,6 @@ function do_careful_git_update() promote_pipe_return 0 test_or_die "git remote update" - local this_branch="$(my_branch_name)" -#appears to be useless; reports no changes when we need to know about remote changes that do exist: -#hmmm: trying it out again now that things are better elsewhere. let's see what it says. state=$(check_branch_state "$this_branch") echo "=> branch '$this_branch' state after remote update is: $state" -- 2.34.1