debugging
authorChris Koeritz <fred@gruntose.com>
Thu, 9 Nov 2017 16:17:27 +0000 (11:17 -0500)
committerChris Koeritz <fred@gruntose.com>
Thu, 9 Nov 2017 16:17:27 +0000 (11:17 -0500)
some git command threw an error result even with no visible errors, so now tracking down where.

scripts/rev_control/version_control.sh

index c3e21b2108c0007e25c8c0281c91c5434781ebfd..777e51b4231b1ccd4b1ac10cd79e8188baa874f4 100644 (file)
@@ -154,12 +154,15 @@ function do_checkin()
       # snag all new files.  not to everyone's liking.
       git add --all .
       retval=$?
+echo A: retval=$retval
       # tell git about all the files and get a check-in comment.
       git commit .
       retval+=$?
+echo B: retval=$retval
       # upload the files to the server so others can see them.
       git push 2>&1 | grep -v "X11 forwarding request failed"
       retval+=$?
+echo C: retval=$retval
     fi
   else
     echo no repository in $directory