Skip to content

Commit

Permalink
fix build script for Non-English environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreagonmon committed Dec 6, 2024
1 parent 70151ee commit c79dc9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dependencies/local-build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ try {

$tempPbConfPath = Separator "$playbookTemp\playbook.conf"
if ($patterns.Count -gt 0) {
Get-Content "playbook.conf" | Where-Object { $_ -notmatch ($patterns -join '|') } | Set-Content $tempPbConfPath
Get-Content -Encoding "utf8" "playbook.conf" | Where-Object { $_ -notmatch ($patterns -join '|') } | Set-Content -Encoding "utf8" $tempPbConfPath
}

$customYmlPath = Separator "Configuration\custom.yml"
Expand Down

0 comments on commit c79dc9c

Please sign in to comment.