mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix ignore list
This commit is contained in:
parent
cb839a1568
commit
a870e2773a
1 changed files with 3 additions and 1 deletions
|
|
@ -40,7 +40,9 @@ function Delete-Unused ($path, $config) {
|
|||
$target = "$path\Output\$config"
|
||||
$included = Get-ChildItem $target -Filter "*.dll"
|
||||
foreach ($i in $included){
|
||||
if ($i.Name in ["System.Text.Encodings.Web.dll"]) {
|
||||
$ignored = ["System.Text.Encodings.Web.dll"]
|
||||
|
||||
if ($ignored.Contains($i.Name)) {
|
||||
# ignore some specific dll that seems to make issue
|
||||
continue
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue