Merge "fastboot: Print OemCmdHandler return message on success"

This commit is contained in:
David Anderson 2022-05-26 00:20:46 +00:00 committed by Gerrit Code Review
commit 3c8a95e3be

View file

@ -254,6 +254,7 @@ bool OemCmdHandler(FastbootDevice* device, const std::vector<std::string>& args)
return device->WriteStatus(FastbootResult::FAIL, ret.message);
}
device->WriteInfo(ret.message);
return device->WriteStatus(FastbootResult::OKAY, ret.message);
}