Skip to content

Commit

Permalink
fix(local-build): support for runner 7z version
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Jun 10, 2024
1 parent de28d5d commit d630f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/local-build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ try {
$files = "$rootTemp\7zFiles.txt"
(Get-ChildItem -File -Exclude $excludeFiles -Recurse).FullName | Resolve-Path -Relative | ForEach-Object {$_.Substring(2)} | Out-File $files -Encoding utf8

if (!$NoPassword) { $pass = '-p"malte"' }
if (!$NoPassword) { $pass = '-pmalte' }
& $7zPath a -spf -y -mx1 $pass -tzip "$apbxPath" `@"$files" | Out-Null
# add edited files
if (Test-Path "$playbookTemp\*.*") {
Expand Down

0 comments on commit d630f5c

Please sign in to comment.