summaryrefslogtreecommitdiff
path: root/absurd/git
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-12-19 14:35:30 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-12-19 16:58:57 +0000
commit815eb9d89a743bcd20e566eaabbfd2233109b24b (patch)
tree59b4f346201bb1d00174deff8b814f47ed9ff511 /absurd/git
parent38f6b086d867555316d1065dd7c00c309bb0415d (diff)
absurd/git: Better debugging
Honour DGIT_ABSURD_DEBUG, which is set by dgit from $debuglevel. Also, in dgit, open the output file for append. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'absurd/git')
-rwxr-xr-xabsurd/git13
1 files changed, 13 insertions, 0 deletions
diff --git a/absurd/git b/absurd/git
index d65a558..8605008 100755
--- a/absurd/git
+++ b/absurd/git
@@ -1,7 +1,14 @@
#!/bin/sh
set -e
+case "$DGIT_ABSURD_DEBUG" in
+''|0) exec 3>/dev/null ;;
+1) exec 3>>../../gbp-pq-output ;;
+*) exec 3>>../../gbp-pq-output 2>&3 ;;
+esac
+
log () {
+ echo >&3 "DGIT ABSURD GIT APPLY (DEBUG) $*"
echo >&2 "DGIT ABSURD GIT APPLY (STDERR) $*"
}
@@ -27,11 +34,17 @@ done
if $bypass; then
PATH=$npath
+ echo >&3 "DGIT ABSURD GIT APPLY - BYPASS: $*"
exec git "$@"
fi
log "NO BYPASS: $*"
+case "$DGIT_ABSURD_DEBUG" in
+''|0|1) ;;
+*) set -x ;;
+esac
+
#exec >/dev/tty 2>&1
index=0