diff --git a/implementations/Crafter.Build-Project.cpp b/implementations/Crafter.Build-Project.cpp index 6e262a5..901236e 100644 --- a/implementations/Crafter.Build-Project.cpp +++ b/implementations/Crafter.Build-Project.cpp @@ -72,7 +72,7 @@ namespace Crafter { } Project::Project(fs::path&& path, const std::string_view config) : path(std::move(path)) { if (!fs::exists(this->path)) { - throw std::runtime_error(std::format("Project file: {} not found.", path.generic_string())); + throw std::runtime_error(std::format("Project file: {} not found.", this->path.generic_string())); } std::ifstream f(this->path);