submodule--helper clone: create the submodule path just once
[gitweb.git] / builtin / submodule--helper.c
index 4f0b0022eec10428774d4fad769987a0ddf42b50..0b9f546de5b2f6a3151fd88056887d007a42e7a3 100644 (file)
@@ -215,11 +215,7 @@ static int module_clone(int argc, const char **argv, const char *prefix)
        }
 
        /* Write a .git file in the submodule to redirect to the superproject. */
-       if (safe_create_leading_directories_const(path) < 0)
-               die(_("could not create directory '%s'"), path);
-
        strbuf_addf(&sb, "%s/.git", path);
-
        if (safe_create_leading_directories_const(sb.buf) < 0)
                die(_("could not create leading directories of '%s'"), sb.buf);
        submodule_dot_git = fopen(sb.buf, "w");