Add error message when no users specified to files:scan command

remotes/origin/ldap_group_count
Vincent Petry 12 years ago
parent 1822bba5e9
commit fd04b3070f
  1. 5
      apps/files/command/scan.php

@ -63,6 +63,11 @@ class Scan extends Command {
$users = $input->getArgument('user_id');
}
if (count($users) === 0) {
$output->writeln("<error>Please specify the user id to scan or \"--all\" to scan for all users</error>");
return;
}
foreach ($users as $user) {
if (is_object($user)) {
$user = $user->getUID();

Loading…
Cancel
Save