Commit 599297fd by Sven Strickroth

ignore missing pack file as git does

See http://code.google.com/p/tortoisegit/issues/detail?id=862

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent cd19ca95
......@@ -224,7 +224,10 @@ static int packfile_load__cb(void *_data, char *path)
}
error = git_packfile_check(&pack, path);
if (error < GIT_SUCCESS)
if (error == GIT_ENOTFOUND) {
/* ignore missing .pack file as git does */
return GIT_SUCCESS;
} else if (error < GIT_SUCCESS)
return git__rethrow(error, "Failed to load packfile");
if (git_vector_insert(&backend->packs, pack) < GIT_SUCCESS) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment