This commit is contained in:
Krzosa Karol
2025-01-06 21:33:15 +01:00
parent 1710bc232d
commit 83c28e27d0
5 changed files with 300 additions and 221 deletions

View File

@@ -5174,7 +5174,7 @@ int main(int argument_count, char **arguments) {
exe_name = OS_GetAbsolutePath(&Perm, exe_name);
int result = os_systemf("%.*s %.*s", S8_Expand(exe_name), S8_Expand(cmd_args_merged));
if (result != 0) {
IO_Printf("ERROR: failed to run build_file: %.*s, exitcode(%d), %f, deleting cache\n", S8_Expand(build_file), result, OS_GetTime() - time);
IO_Printf("ERROR: error during build_file execution: %.*s, exitcode(%d), %f, deleting cache\n", S8_Expand(build_file), result, OS_GetTime() - time);
os_delete_file(S8_Lit("build_tool.cache"));
return 1;
}