Skip to content

Commit ce5ca98

Browse files
committed
Fix build script for zip directory structure.
1 parent 692d586 commit ce5ca98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/Build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ if ( $buildConfig -eq 'Release' )
192192
{
193193
& $nuget pack ../MsgPack.nuspec -Symbols -Version $env:PackageVersion -OutputDirectory ../dist
194194

195-
Copy-Item ../bin/ ./MsgPack-CLI/ -Recurse -Exclude @("*.vshost.*")
196-
Copy-Item ../tools/mpu/bin/ ./MsgPack-CLI/mpu/ -Recurse -Exclude @("*.vshost.*")
195+
Copy-Item ../bin/* ./MsgPack-CLI/ -Recurse -Exclude @("*.vshost.*")
196+
Copy-Item ../tools/mpu/bin/* ./MsgPack-CLI/mpu/ -Recurse -Exclude @("*.vshost.*")
197197
[Reflection.Assembly]::LoadWithPartialName( "System.IO.Compression.FileSystem" ) | Out-Null
198198
# 'latest' should be rewritten with semver manually.
199199
if ( ( Test-Path "../dist/MsgPack.Cli.${env:PackageVersion}.zip" ) )

0 commit comments

Comments
 (0)