builder: Be a bit more verbose when pulling VCS

tingping/wmclass
Alexander Larsson 2015-12-04 08:49:43 +01:00
parent 707bc35c59
commit 374e7d1166
2 changed files with 7 additions and 0 deletions

View File

@ -171,6 +171,8 @@ builder_source_bzr_download (BuilderSource *source,
g_autofree char *filename_tmp = g_strconcat ("./", filename, ".clone_tmp", NULL);
g_autoptr(GFile) mirror_dir_tmp = g_file_get_child (parent, filename_tmp);
g_print ("Getting bzr repo %s\n", self->url);
if (!bzr (parent, NULL, error,
"branch", self->url, filename_tmp, NULL) ||
!g_file_move (mirror_dir_tmp, mirror_dir, 0, NULL, NULL, NULL, error))
@ -178,6 +180,8 @@ builder_source_bzr_download (BuilderSource *source,
}
else
{
g_print ("Updating bzr repo %s\n", self->url);
if (!bzr (mirror_dir, NULL, error,
"pull", NULL))
return FALSE;

View File

@ -316,6 +316,8 @@ git_mirror_repo (const char *repo_url,
g_autofree char *filename_tmp = g_strconcat (filename, ".clone_tmp", NULL);
g_autoptr(GFile) mirror_dir_tmp = g_file_get_child (parent, filename_tmp);
g_print ("Cloning git repo %s\n", repo_url);
if (!git (parent, NULL, error,
"clone", "--mirror", repo_url, filename_tmp, NULL) ||
!g_file_move (mirror_dir_tmp, mirror_dir, 0, NULL, NULL, NULL, error))
@ -323,6 +325,7 @@ git_mirror_repo (const char *repo_url,
}
else
{
g_print ("Fetching git repo %s\n", repo_url);
if (!git (mirror_dir, NULL, error,
"fetch", NULL))
return FALSE;