diff --git a/implementations/Crafter.Build-Command.cpp b/implementations/Crafter.Build-Command.cpp index b7424af..686e748 100644 --- a/implementations/Crafter.Build-Command.cpp +++ b/implementations/Crafter.Build-Command.cpp @@ -105,9 +105,7 @@ namespace Crafter { std::filesystem::path GetPath() { char path[MAX_PATH]; DWORD length = GetModuleFileNameA(NULL, path, MAX_PATH); - std::cout << length << std::endl; if (length == 0) { - std::cout << "failed" << std::endl; throw std::runtime_error("Failed to get executable path"); } path[length] = '\0'; @@ -298,7 +296,9 @@ namespace Crafter { // } void BuildStdPcm(const Project& project, const Configuration& config) { + std::cout << "bruh" << std::endl; std::cout << config.target << std::endl; + std::cout << "bruh2" << std::endl; if(config.target == "x86_64-pc-linux-gnu") { BuildGnuStdPcm(project, config); } else if(config.target == "x86_64-w64-mingw32") {