From ccc77a408189e5126cb1c9ff323883233380d90f Mon Sep 17 00:00:00 2001 From: tylen Date: Thu, 26 Sep 2024 21:36:34 +0000 Subject: [PATCH] platform: remove TODO for get_git_remote_urls_from_lines issue #2 --- src/platform/base.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/platform/base.c b/src/platform/base.c index e0588b2..9ee3faf 100644 --- a/src/platform/base.c +++ b/src/platform/base.c @@ -118,7 +118,6 @@ PlaformId identify_platfrom_from_project(const char* project_path, const char* r LOG_DEBUG("Constructed git config file path: %s", git_config_path_buffer->data); Lines* config_file_lines = read_file_lines(git_config_path_buffer->data); - //TODO: from remote "origin" get url Lines* git_remote_urls = get_git_remote_urls_from_lines(config_file_lines, remote); //TODO: parse remote "origin url" to get platform lines_free(config_file_lines);