X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=prune-packed.c;h=26123f7f6bb8bf9cc7fc27905fe2b67d66646f05;hb=1bd8c8f00b1c7facb67c99047fe777b53f2c49ff;hp=1e0fc0cd9e9694c0bad54e26367097cc499bf3d2;hpb=2b2dabc29f53c5835868029585000ee487cf6cbb;p=git.git diff --git a/prune-packed.c b/prune-packed.c index 1e0fc0cd..26123f7f 100644 --- a/prune-packed.c +++ b/prune-packed.c @@ -27,8 +27,7 @@ static void prune_dir(int i, DIR *dir, char *pathname, int len) error("unable to unlink %s", pathname); } pathname[len] = 0; - if (!rmdir(pathname)) - mkdir(pathname, 0777); + rmdir(pathname); } static void prune_packed_objects(void) @@ -72,6 +71,7 @@ int main(int argc, char **argv) /* Handle arguments here .. */ usage(prune_packed_usage); } + sync(); prune_packed_objects(); return 0; }