Skip to content
Snippets Groups Projects
Unverified Commit 1355f203 authored by Vincent Petry's avatar Vincent Petry Committed by Morris Jobke
Browse files

Transfer ownership now returns exit code on error (#26546)

parent cebb6899
No related branches found
No related tags found
No related merge requests found
......@@ -96,12 +96,12 @@ class TransferOwnership extends Command {
if (!$sourceUserObject instanceof IUser) {
$output->writeln("<error>Unknown source user $this->sourceUser</error>");
return;
return 1;
}
if (!$destinationUserObject instanceof IUser) {
$output->writeln("<error>Unknown destination user $this->destinationUser</error>");
return;
return 1;
}
$this->sourceUser = $sourceUserObject->getUID();
......@@ -110,7 +110,7 @@ class TransferOwnership extends Command {
// target user has to be ready
if (!\OC::$server->getEncryptionManager()->isReadyForUser($this->destinationUser)) {
$output->writeln("<error>The target user is not ready to accept files. The user has at least to be logged in once.</error>");
return;
return 2;
}
$date = date('c');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment