This commit is contained in:
Jeroen van Rijn
2026-01-24 14:06:31 +01:00
parent 8ffc98b4bf
commit 1c529d8cb2
4 changed files with 21 additions and 1 deletions

View File

@@ -6023,6 +6023,12 @@ gb_internal bool determine_path_from_string(BlockingMutex *file_mutex, Ast *node
has_windows_drive = true;
}
}
for (isize i = 0; i < original_string.len; i++) {
if (original_string.text[i] == '\\') {
original_string.text[i] = '/';
}
}
}
#endif