diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2013-06-09 18:33:45 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-09 13:46:45 -0700 |
commit | 467b8fe1bb900832f51281fe954d9134b545d6dd (patch) | |
tree | 4919447580b0139cca3721d14367cc445a035557 | |
parent | Document .git/modules (diff) | |
download | tgif-467b8fe1bb900832f51281fe954d9134b545d6dd.tar.xz |
submodule: remove redundant check for the_index.initialized
read_cache already performs the same check and returns immediately if
the cache has already been loaded.
Signed-off-by: René Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | submodule.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/submodule.c b/submodule.c index e728025f60..1821a5b316 100644 --- a/submodule.c +++ b/submodule.c @@ -603,9 +603,8 @@ int fetch_populated_submodules(const struct argv_array *options, if (!work_tree) goto out; - if (!the_index.initialized) - if (read_cache() < 0) - die("index file corrupt"); + if (read_cache() < 0) + die("index file corrupt"); argv_array_push(&argv, "fetch"); for (i = 0; i < options->argc; i++) |