diff options
-rwxr-xr-x | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,7 +144,7 @@ b8 str_eq(c8 const *a, c8 const *b) { b8 check_compiler(c8 const *name) { if (str_eq_lower(name, "cl") || str_eq_lower(name, "cl.exe")) { - if (system(fmt("%s /?", name)) != 0) + if (system(fmt("%s", name)) != 0) return 0; return 1; } |