X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=prune-packed.c;h=26123f7f6bb8bf9cc7fc27905fe2b67d66646f05;hb=23d61f8343282643c830e1c446962b213dbcc09a;hp=73f0f3a46277e9053d97590f8e2200477fe247e3;hpb=f51248eb482a7a0feacb04d02119c94d35845975;p=git.git diff --git a/prune-packed.c b/prune-packed.c index 73f0f3a4..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; }