diff --git a/daux.phar b/daux.phar old mode 100755 new mode 100644 index 7493b75..d3ed60e Binary files a/daux.phar and b/daux.phar differ diff --git a/libs/Generator/Command.php b/libs/Generator/Command.php index a0dc3a3..3907056 100644 --- a/libs/Generator/Command.php +++ b/libs/Generator/Command.php @@ -31,11 +31,12 @@ class Command extends SymfonyCommand $width = $this->getApplication()->getTerminalDimensions()[0]; - switch(strtolower($input->getOption('processor'))) { - case 'none': - default: - //nothing - } + $processor = $input->getOption('processor'); + if (!empty($processor) && $processor != 'none') { + if (file_exists($processor)) { + include $processor; + } + } switch(strtolower($input->getOption('format'))) { case 'confluence':