From 6320d705a17f000d802a03112a12058de5ef4f3c Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Sun, 2 Apr 2023 12:17:40 +0200 Subject: [PATCH] Fix folders again --- core_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core_main.cpp b/core_main.cpp index d6e93ff..ac2a307 100644 --- a/core_main.cpp +++ b/core_main.cpp @@ -176,8 +176,8 @@ int main(int argument_count, char **arguments) { if (it == "-testing"_s) { Scoped_Arena _scope(&scratch); - Array examples = os_list_dir(&scratch, &scratch, "build/examples"_s); - Array tests = os_list_dir(&scratch, &scratch, "build/tests"_s); + Array examples = os_list_dir(&scratch, &scratch, "examples"_s); + Array tests = os_list_dir(&scratch, &scratch, "tests"_s); For(examples) { if (it.is_directory) continue; String filename = string_skip_to_last_slash(it.relative_path);