When the patch tries to create a new file and the file exists, abort.
[gitweb.git] / export.c
index 78bfe9f2224408056ad7992827dff498302e67b7..b6487177d3cad0de3a5a88b0bd0fd3c9cfc22948 100644 (file)
--- a/export.c
+++ b/export.c
@@ -12,7 +12,7 @@ void show_commit(struct commit *commit)
        strcpy(hex, sha1_to_hex(commit->object.sha1));
        printf("Id: %s\n", hex);
        fflush(NULL);
-       sprintf(cmdline, "cat-file commit %s", hex);
+       sprintf(cmdline, "git-cat-file commit %s", hex);
        system(cmdline);
        if (commit->parents) {
                char *against = sha1_to_hex(commit->parents->item->object.sha1);