From 469c4f7167cbfe769fef75148f8c04c920cea1ce Mon Sep 17 00:00:00 2001 From: Johnny Cena Date: Tue, 19 Aug 2025 21:40:09 +0200 Subject: [PATCH] debug print the working directory --- tools/rexm/rexm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/rexm/rexm.c b/tools/rexm/rexm.c index 64a253934..623c96c5f 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -758,6 +758,7 @@ int main(int argc, char *argv[]) // NOTE: Source of truth is what we have in the examples directories (on validation/update) FilePathList list = LoadDirectoryFilesEx(exBasePath, ".c", true); + TraceLog(LOG_INFO, "DEBUG: Working Directory: %s", GetWorkingDirectory()); char *exList = LoadFileText(exCollectionFilePath); char *exListUpdated = (char *)RL_CALLOC(REXM_MAX_BUFFER_SIZE, 1); bool listUpdated = false;