Skip to content

Commit

Permalink
minor #714 Fix description of flag "--force" of the recipes:install c…
Browse files Browse the repository at this point in the history
…ommand (nicolas-grekas)

This PR was merged into the 1.9-dev branch.

Discussion
----------

Fix description of flag "--force" of the recipes:install command

As spotted in #684 (comment)

Commits
-------

baaf062 Fix description of flag "--force" of the recipes:install command
  • Loading branch information
nicolas-grekas committed Nov 5, 2020
2 parents 7c48460 + baaf062 commit e385202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/InstallRecipesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected function configure()
->setAliases(['recipes:install', 'symfony:sync-recipes', 'sync-recipes', 'fix-recipes'])
->setDescription('Installs or reinstalls recipes for already installed packages.')
->addArgument('packages', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'Recipes that should be installed.')
->addOption('force', null, InputOption::VALUE_NONE, 'Ignore the "symfony.lock" file and overwrite existing files')
->addOption('force', null, InputOption::VALUE_NONE, 'Overwrite existing files when a new version of a recipe is available')
;
}

Expand Down

0 comments on commit e385202

Please sign in to comment.