Skip to content

Commit 33603bb

Browse files
MAGETWO-58729: [Generator] Add images to performance profile generator
1 parent 50a253b commit 33603bb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup/src/Magento/Setup/Fixtures/Fixture.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ public function printInfo(OutputInterface $output)
5858
$generationCount = is_array($configValue) === true
5959
? count($configValue[array_keys($configValue)[0]])
6060
: $configValue;
61-
$output->writeln('<info> |- ' . $label . ': ' . $generationCount .'</info>');
61+
62+
if (!empty($generationCount)) {
63+
$output->writeln('<info> |- ' . $label . ': ' . $generationCount .'</info>');
64+
}
6265
}
6366
}
6467

0 commit comments

Comments
 (0)