From: Richard Hartmann Date: Wed, 26 Oct 2011 20:47:38 +0000 (+0200) Subject: Make debug & verbose testing more resilient X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/982d98af49b99f427fb3bc9f837aef7a362cd7b6 Make debug & verbose testing more resilient --- diff --git a/vcsh b/vcsh index dd3d91e..37f25ab 100755 --- a/vcsh +++ b/vcsh @@ -1,6 +1,6 @@ #!/bin/sh -[ "$VCSH_DEBUG" = '1' ] && set -x +[ -n "$VCSH_DEBUG" ] && set -x SELF=$(basename $0) @@ -20,11 +20,11 @@ done VCSH_BASE="$XDG_CONFIG_HOME/vcsh/repo.d" debug() { - [ "$VCSH_DEBUG" = '1' ] && echo "$SELF: debug: $1" + [ -n "$VCSH_DEBUG" ] && echo "$SELF: debug: $1" } verbose() { - if [ "$VCSH_DEBUG" = '1' ] || [ "$VCSH_VERBOSE" = '1' ]; then echo "$SELF: verbose: $1"; fi + if [ -n "$VCSH_DEBUG" ] || [ -n "$VCSH_VERBOSE" ]; then echo "$SELF: verbose: $1"; fi } # use Use this repository