From 1f17e941dfc1f3753e605597793c2f6047f8e57d Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Fri, 1 May 2026 11:18:55 +0200 Subject: [PATCH] - [FIX] lo mism --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 13d4de4..1e03f7c 100644 --- a/main.cpp +++ b/main.cpp @@ -370,7 +370,7 @@ int main(int argc, char *argv[]) std::string source_file = entry.path().string(); std::string ext = getFileExtension(source_file); - if ((ext == "cpp" || ext == "c") && !contains(exclude, entry.path().filename())) { + if ((ext == "cpp" || ext == "c") && !contains(exclude, entry.path().filename().string())) { MaybeRecompile(source_file); } }