From 4443200490f986e959c5dd82ca8ba690b1a4caa7 Mon Sep 17 00:00:00 2001 From: Kevin Zhang <45326534+taooceros@users.noreply.github.com> Date: Mon, 28 Jun 2021 11:26:18 +0800 Subject: [PATCH] remove createdump.exe --- Scripts/post_build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Scripts/post_build.ps1 b/Scripts/post_build.ps1 index 7f089a440..cfa438e10 100644 --- a/Scripts/post_build.ps1 +++ b/Scripts/post_build.ps1 @@ -52,6 +52,7 @@ function Remove-CreateDumpExe ($path, $config) { $depjson = Get-Content $target\Flow.Launcher.deps.json -raw $depjson -replace '(?s)(.createdump.exe": {.*?}.*?\n)\s*', "" | Out-File $target\Flow.Launcher.deps.json + Remove-Item -Path $target -Include "*createdump.exe" -Recurse }