v1.2.0 #3

Merged
anthony merged 4 commits from dev into master 2023-08-13 02:28:35 +00:00
Showing only changes of commit c630af8795 - Show all commits

View File

@ -218,10 +218,10 @@ class Processor
++$current; ++$current;
printf("Converting '%s' (%d/%d):%s", $collectionName, $current, $count, PHP_EOL); printf("Converting '%s' (%d/%d):%s", $collectionName, $current, $count, PHP_EOL);
foreach ($this->converters as $type => $exporter) { foreach ($this->converters as $type => $exporter) {
printf(' > %s', strtolower($type)); printf('> %s%s', strtolower($type), PHP_EOL);
$outputPath = sprintf('%s%s%s', $this->outputPath, DIRECTORY_SEPARATOR, $collectionName); $outputPath = sprintf('%s%s%s', $this->outputPath, DIRECTORY_SEPARATOR, $collectionName);
$exporter->convert($collection, $outputPath); $exporter->convert($collection, $outputPath);
printf(' - OK: %s%s', $exporter->getOutputPath(), PHP_EOL); printf(' OK: %s%s', $exporter->getOutputPath(), PHP_EOL);
} }
print(PHP_EOL); print(PHP_EOL);
++$success; ++$success;