Skip to content

Commit 4b8d669

Browse files
authored
recursively ignore files for packing
1 parent a4c5b9d commit 4b8d669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/utils.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function Extract-Archive($source, $target) {
3737
}
3838

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

0 commit comments

Comments
 (0)