Its OK for the objects/pack directory to be missing, an empty repository doesn't have to have it. C Git's `git repack` will automatically create the directory if it is not present, so we need to do the same behavior here. When the directory doesn't exist, we try to create it, but we may have creation fail if another concurrent thread/process also made the directory at the same time, hence we test once more after creation failure before throwing the exception. Found-by: Mark Struberg <struberg@xxxxxxxx> Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- Mark Struberg <struberg@xxxxxxxx> wrote: > > If I use jgit to push to this repo it crashes because it cannot write to the pack folder. If I > mkdir the object/pack folder in my origin repo, everything runs smooth. Yea, that's legal. This patch should fix it. .../src/org/spearce/jgit/transport/IndexPack.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java b/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java index b2bcbb7..1eb40d4 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java +++ b/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java @@ -1037,6 +1037,14 @@ public PackLock renameAndOpenPack(final String lockMessage) final File finalIdx = new File(packDir, "pack-" + name + ".idx"); final PackLock keep = new PackLock(finalPack); + if (!packDir.exists() && !packDir.mkdir() && !packDir.exists()) { + // The objects/pack directory isn't present, and we are unable + // to create it. There is no way to move this pack in. + // + cleanupTemporaryFiles(); + throw new IOException("Cannot create " + packDir.getAbsolutePath()); + } + if (finalPack.exists()) { // If the pack is already present we should never replace it. // -- 1.6.3.195.gad81 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html