From 322f9f27a839fee7e57b53fd6574cb838e12422f Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Tue, 16 Apr 2024 11:41:12 +0200 Subject: [PATCH] Add message about deleting cache --- src/build_tool/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build_tool/main.cpp b/src/build_tool/main.cpp index 2d4b286..c534056 100644 --- a/src/build_tool/main.cpp +++ b/src/build_tool/main.cpp @@ -78,7 +78,7 @@ int main(int argument_count, char **arguments) { exe_name = OS_GetAbsolutePath(Perm, exe_name); int result = Run(exe_name + cmd); if (result != 0) { - IO_Printf("FAILED execution of the build file!\n"); + IO_Printf("FAILED execution of the build file, deleting cache!\n"); OS_DeleteFile("build_tool.cache"); return 1; }