]> git.ipfire.org Git - thirdparty/git.git/blobdiff - prune-packed.c
Add to documentation of git-update-index arguments and usage.
[thirdparty/git.git] / prune-packed.c
index 1e0fc0cd9e9694c0bad54e26367097cc499bf3d2..26123f7f6bb8bf9cc7fc27905fe2b67d66646f05 100644 (file)
@@ -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;
 }