make sure each edition contains the correct vendored files

This commit is contained in:
David Refoua
2022-10-15 03:55:44 +03:30
parent 2dc5463c31
commit adcef21034
3 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ function Extract-Archive($source, $target) {
}
function Create-Archive($source, $target, $params) {
$command = "7z a -xr@`"$source\packignore`" $params $target $source > `$null"
$command = "7z a -xr@`"$source\packignore`" $params `"$target`" `"$source\*`" > `$null"
Write-Verbose "Creating Archive from '$source' in '$target' with parameters '$params'"
Invoke-Expression $command
if ($lastexitcode -ne 0) {