]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Better debugging
authorRichard Hartmann <richih.mailinglist@gmail.com>
Sat, 11 May 2013 18:14:52 +0000 (20:14 +0200)
committerRichard Hartmann <richih.mailinglist@gmail.com>
Sat, 11 May 2013 18:14:52 +0000 (20:14 +0200)
* Start debugging as early as possible
* Always print version if run with debugging or verbose enabled

vcsh

diff --git a/vcsh b/vcsh
index cf85e7c1a47ccb00dcba5898d83386bd860fc437..22b4a70142cb08cffb8fc183638029e6375220a8 100755 (executable)
--- a/vcsh
+++ b/vcsh
@@ -12,6 +12,9 @@
 # which is admittedly extremely unlikely to the point of being impossible,
 # this software will most likely follow suit.
 
+# This should always be the first line of code to facilitate debugging
+[ -n "$VCSH_DEBUG" ] && set -vx
+
 basename() {
        # Implemented in shell to avoid spawning another process
        local file
@@ -35,8 +38,10 @@ while getopts "c:dv" flag; do
        if [ "$1" = '-d' ] || [ "$1" = '--debug' ]; then
                set -vx
                VCSH_DEBUG=1
+               echo "$SELF $VERSION"
        elif [ "$1" = '-v' ];then
                VCSH_VERBOSE=1
+               echo "$SELF $VERSION"
        elif [ "$1" = '-c' ];then
                VCSH_OPTION_CONFIG=$OPTARG
        fi