Skip to content

Commit

Permalink
Item13610: getcfg and getspec and search don't report results
Browse files Browse the repository at this point in the history
For now add a Data::Dumper call.
  • Loading branch information
gac410 committed Aug 5, 2015
1 parent 60d64af commit 3b3df80
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion core/tools/configure
Expand Up @@ -406,7 +406,14 @@ if ($action) {
}
}
else {
print STDERR "No configuration changes made by $action\n";
if ( $action =~ /(?:::getcfg|::getspec|search)$/ ) {
my $out = Data::Dumper::Dumper( \$response );
$out =~ s/^\$VAR1 = \\/ /;
print STDERR $out;
}
else {
print STDERR "No configuration changes made by $action\n";
}
}
}

Expand Down

0 comments on commit 3b3df80

Please sign in to comment.