From: Heiko Schlittermann (HS12-RIPE) Date: Thu, 29 Jun 2017 17:42:11 +0000 (+0200) Subject: Print the full target directory (debugging aid) X-Git-Url: https://git.exim.org/buildfarm-client.git/commitdiff_plain/e6b9c55de63090bf6774fdc30d02830ec07fbad4?hp=7d4d268e0d2374fa86be91e41ea48e4cf192ef15 Print the full target directory (debugging aid) --- 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`;