Пример #1
0
gboolean
gitg_shell_run_sync_list (GitgCommand **commands,
                          GError      **error)
{
	gchar **res;

	res = gitg_shell_run_sync_with_output_list (commands, FALSE, error);

	if (res)
	{
		g_strfreev (res);
		return TRUE;
	}
	else
	{
		return FALSE;
	}
}
Пример #2
0
gboolean
gitg_shell_run_sync_list (GitgCommand **commands,
                          GError      **error)
{
	return gitg_shell_run_sync_with_output_list (commands, FALSE, NULL, error);
}