Skip to content

Commit

Permalink
Exclude VC++ Tests binaries from portable package
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Nov 18, 2020
1 parent d56fac7 commit 57dec3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scripts/compile_release_package.ps1
Expand Up @@ -103,7 +103,7 @@ Get-ChildItem -Path $portableFilesFolder | Remove-Item -Recurse -Force
Write-Host ("Copying files...")

$installFolder = Get-Item "..\..\install"
$excludes = @('*.exp', '*.lib', '*.iobj', '*.ipdb', '*.suo', '*.pgd', '*.fbp', 'darkradiant.desktop.in')
$excludes = @('*.exp', '*.lib', '*.iobj', '*.ipdb', '*.suo', '*.pgd', '*.fbp', 'darkradiant.desktop.in', 'Tests.*')

Get-ChildItem $installFolder -Recurse -Exclude $excludes | Copy-Item -Destination { Join-Path $portableFilesFolder $_.FullName.Substring($installFolder.FullName.Length) }

Expand Down

0 comments on commit 57dec3e

Please sign in to comment.