From e6b9c55de63090bf6774fdc30d02830ec07fbad4 Mon Sep 17 00:00:00 2001 From: "Heiko Schlittermann (HS12-RIPE)" Date: Thu, 29 Jun 2017 19:42:11 +0200 Subject: [PATCH] Print the full target directory (debugging aid) --- EximBuild/SCM.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EximBuild/SCM.pm b/EximBuild/SCM.pm index f174982..9b006cd 100644 --- a/EximBuild/SCM.pm +++ b/EximBuild/SCM.pm @@ -1,6 +1,7 @@ use strict; use File::Find; +use Cwd; =comment @@ -218,7 +219,7 @@ sub checkout chdir '..'; print "Missing checked out branch bf_$branch:\n",@branches if ($main::verbose); - unshift @branches,"Missing checked out branch bf_$branch in $target:\n"; + unshift @branches,"Missing checked out branch bf_$branch in " . cwd() . ":\n"; main::send_result("$target-Git",$status,\@branches); } my @pulllog = `git pull 2>&1`; -- 2.30.2