From 7ddf6cd4f2d222818cb7db9de76d0a80d43d8478 Mon Sep 17 00:00:00 2001 From: Marc Chapman Date: Wed, 16 Oct 2019 19:22:34 +0100 Subject: [PATCH] Fix shader path and added console.log in cleanup.bat --- Tools/CMake/cleanup-win.bat.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Tools/CMake/cleanup-win.bat.in b/Tools/CMake/cleanup-win.bat.in index c8c3a4fad..d0495a01e 100644 --- a/Tools/CMake/cleanup-win.bat.in +++ b/Tools/CMake/cleanup-win.bat.in @@ -2,7 +2,7 @@ :: Delete procedural shaders echo shaders -del /q /a:-R shaders\procedural\*.* +del /q /a:-R data\shaderCachel\*.* :: Delete dumped shader disassembly files for /R %%a IN (*._dis.txt) do IF EXIST "%%a._dis.txt" del "%%a._dis.txt" @@ -38,10 +38,11 @@ IF EXIST "scripts\server\banlist.cs" del /s scripts\server\banlist.cs IF EXIST "scripts\server\prefs.cs" del /s scripts\server\prefs.cs IF EXIST "client\config.cs" del /s client\config.cs IF EXIST "config.cs" del /s config.cs -IF EXIST "tools\settings.xml" del /s tools\settings.xml +:: IF EXIST "tools\settings.xml" del /s tools\settings.xml IF EXIST "banlist.cs" del /s banlist.cs :: logs echo logs IF EXIST "torque3d.log" del /s torque3d.log -echo DONE! +IF EXIST "console.log" del /s console.log +echo DONE! \ No newline at end of file