You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Composer/Satis/Command/BuildCommand.php
+33-2Lines changed: 33 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ protected function configure()
53
53
newInputArgument('file', InputArgument::OPTIONAL, 'Json file to use', './satis.json'),
54
54
newInputArgument('output-dir', InputArgument::OPTIONAL, 'Location where to output built files', null),
55
55
newInputArgument('packages', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'Packages that should be built, if not provided all packages are.', null),
56
+
newInputOption('repository-url', null, InputOption::VALUE_OPTIONAL, 'Only update the repository at given url', null),
56
57
newInputOption('no-html-output', null, InputOption::VALUE_NONE, 'Turn off HTML view'),
57
58
newInputOption('skip-errors', null, InputOption::VALUE_NONE, 'Skip Download or Archive errors'),
58
59
))
@@ -148,8 +149,36 @@ protected function execute(InputInterface $input, OutputInterface $output)
148
149
thrownew \InvalidArgumentException('The output dir must be specified as second argument or be configured inside '.$input->getArgument('file'));
0 commit comments