Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Commit

Permalink
rebase and merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Steinberg committed Apr 19, 2018
1 parent 4b0a848 commit 9e76db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ std::unique_ptr<IndexFile> IndexCache::LoadIndexFileFromCache(
// Write an IndexFile to the cache storage
void IndexCache::Write(IndexFile& file) {
driver_->Write(file.path, file.file_contents);
driver_->Write(file.path + SerializationFormatToSuffix(g_config->cacheFormat),
driver_->Write(file.path.path + SerializationFormatToSuffix(g_config->cacheFormat),
Serialize(g_config->cacheFormat, file));
}

Expand Down

0 comments on commit 9e76db8

Please sign in to comment.