From 6ac0b124f280e1af68773a6ea1ffff0d3f1b27ee Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Thu, 4 Dec 2025 11:48:33 +0100 Subject: [PATCH] dependancy fix --- implementations/Crafter.Build-Project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);