Merge "libsnapshot: correct DeviceInfo paths"

This commit is contained in:
Treehugger Robot 2019-08-06 22:12:53 +00:00 committed by Gerrit Code Review
commit f9d5327287

View file

@ -49,7 +49,7 @@ static constexpr uint32_t kSnapshotChunkSize = 8;
class DeviceInfo final : public SnapshotManager::IDeviceInfo {
public:
std::string GetGsidDir() const override { return "ota"s; }
std::string GetMetadataDir() const override { return "/metadata/ota/test"s; }
std::string GetMetadataDir() const override { return "/metadata/ota"s; }
bool IsRunningSnapshot() const override;
};