Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/MAGETWO-46697' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Bomko committed Jan 12, 2016
2 parents 799d3c3 + 8af8a76 commit 1919e7e
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -66,7 +66,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
if (!empty($sampleDataPackages)) {
foreach (array_keys($sampleDataPackages) as $name) {
$moduleName = $this->packageInfo->getModuleName($name);
$this->moduleResource->setDataVersion($moduleName, '');
if ($moduleName !== null) {
$this->moduleResource->setDataVersion($moduleName, '');
}
}
$output->writeln('<info>' . 'Reset of sample data version completed successfully.' . '</info>');
} else {
Expand Down

0 comments on commit 1919e7e

Please sign in to comment.