Skip to content

Commit

Permalink
text used in yml fixed for export command (#3401)
Browse files Browse the repository at this point in the history
  • Loading branch information
CoyoteRulea authored and jmolivas committed Jul 5, 2017
1 parent 4531efb commit d9829b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Command/Config/ExportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,23 +59,23 @@ protected function configure()
'directory',
null,
InputOption::VALUE_OPTIONAL,
$this->trans('commands.config.export.arguments.directory')
$this->trans('commands.config.export.options.directory')
)
->addOption(
'tar',
null,
InputOption::VALUE_NONE,
$this->trans('commands.config.export.arguments.tar')
$this->trans('commands.config.export.options.tar')
)->addOption(
'remove-uuid',
null,
InputOption::VALUE_NONE,
$this->trans('commands.config.export.single.options.remove-uuid')
$this->trans('commands.config.export.options.remove-uuid')
)->addOption(
'remove-config-hash',
null,
InputOption::VALUE_NONE,
$this->trans('commands.config.export.single.options.remove-config-hash')
$this->trans('commands.config.export.options.remove-config-hash')
)
->setAliases(['ce']);
}
Expand All @@ -91,7 +91,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$tar = $input->getOption('tar');
$removeUuid = $input->getOption('remove-uuid');
$removeHash = $input->getOption('remove-config-hash');

if (!$directory) {
$directory = config_get_config_directory(CONFIG_SYNC_DIRECTORY);
}
Expand Down

0 comments on commit d9829b1

Please sign in to comment.