src: add todo's

This commit is contained in:
tylen 2024-09-26 12:45:41 +00:00 committed by Vasily Davydov
parent 436da6a7aa
commit 220ba85011
2 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,8 @@ PlaformId identify_platfrom_from_project(const char* project_path) {
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
//TODO: parse remote "origin url" to get platform
lines_flush(config_file_lines);
buffer_free(git_config_path_buffer);
return PL_UNRECOGNIZED;

View File

@ -7,6 +7,7 @@
#include <errno.h>
const char* convert_relative_to_full_path(const char* relative_path) {
//TODO: generate correct path when relative path is ../ or etc
LOG_DEBUG("Entering convert_relative_to_full_path function");
char* cwd;