Don't launch exes concurrently because they compete

This commit is contained in:
Krzosa Karol
2024-01-27 21:51:10 +01:00
parent 6e7438e19b
commit 1b6643e4a8
2 changed files with 3 additions and 11 deletions

View File

@@ -56,7 +56,7 @@ int main() {
S8_String work_path = OS_GetWorkingDir(&arena);
S8_String abs_path = OS_GetAbsolutePath(&arena, read_file_path);
IO_Assert(OS_IsDir(dir_path));
IO_Assertf(OS_IsDir(dir_path), "%.*s", S8_Expand(dir_path));
IO_Assert(!OS_IsFile(dir_path));
IO_Assert(OS_IsFile(exe_path));