From a1216f8197d3b9372071ec570f61ffbce3151c74 Mon Sep 17 00:00:00 2001 From: Taryn Hill Date: Mon, 5 Sep 2016 16:37:44 -0500 Subject: [PATCH] Remove pdb files in make.ps1's clean target --- make.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make.ps1 b/make.ps1 index d1c666fb44..d857e9d0e2 100644 --- a/make.ps1 +++ b/make.ps1 @@ -80,6 +80,8 @@ elseif ($command -eq "clean") rm *.dll rm *.dll.config rm mods/*/*.dll + rm *.pdb + rm mods/*/*.pdb if (Test-Path thirdparty/download/) { rmdir thirdparty/download -Recurse -Force