From 04a71a6c6a7d5d69843354c86d03f2d271047d6e Mon Sep 17 00:00:00 2001 From: reaperrr Date: Sat, 6 Apr 2019 05:19:04 +0200 Subject: [PATCH] Exclude OpenRA.Platforms.Default.dll.config from clean OpenRA.Platforms.Default.dll.config is part of the repo. Linux makefile already excludes the file from removal. --- make.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.ps1 b/make.ps1 index 62e0d0427b..e371f807a9 100644 --- a/make.ps1 +++ b/make.ps1 @@ -38,8 +38,8 @@ function Clean-Command { $proc = Start-Process $msBuild $msBuildArguments -NoNewWindow -PassThru -Wait rm *.dll - rm *.dll.config rm mods/*/*.dll + Get-ChildItem *.dll.config -exclude OpenRA.Platforms.Default.dll.config | Remove-Item rm *.pdb rm mods/*/*.pdb rm *.exe