From 7e30ebc8a06db6efe087eebe5e91c431034f29a8 Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Sun, 22 Feb 2015 18:40:51 -0500 Subject: [PATCH] branch-group: GIT_SILENT Improve debug message. I needed this earlier today, might as well make it permanent. --- modules/ksb/Application.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ksb/Application.pm b/modules/ksb/Application.pm index 072e3f2..b8d4147 100644 --- a/modules/ksb/Application.pm +++ b/modules/ksb/Application.pm @@ -758,7 +758,7 @@ sub runAllModulePhases my $branch = $_->isKDEProject() ? $resolver->findModuleBranch($_->fullProjectPath(), $branchGroup) : 1; # Just a placeholder truthy value - whisper ("Removing $_ due to branch-group") if (defined $branch and !$branch); + whisper ("Removing ", $_->fullProjectPath(), " due to branch-group") if (defined $branch and !$branch); (!defined $branch or $branch); # This is the actual test } (@modules);