builder: Don't mirror submodules if told not to

tingping/wmclass
Alexander Larsson 2017-02-22 15:09:40 +01:00
parent a82708cb10
commit 90674fafa0
1 changed files with 8 additions and 5 deletions

View File

@ -248,12 +248,15 @@ builder_git_mirror_repo (const char *repo_location,
return FALSE;
}
current_commit = git_get_current_commit (mirror_dir, ref, context, error);
if (current_commit == NULL)
return FALSE;
if (mirror_submodules)
{
current_commit = git_get_current_commit (mirror_dir, ref, context, error);
if (current_commit == NULL)
return FALSE;
if (!git_mirror_submodules (repo_location, update, mirror_dir, current_commit, context, error))
return FALSE;
if (!git_mirror_submodules (repo_location, update, mirror_dir, current_commit, context, error))
return FALSE;
}
return TRUE;
}