We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656c5ff commit 5f9a344Copy full SHA for 5f9a344
Expand-Template.ps1
@@ -40,7 +40,7 @@ function Replace-Placeholders {
40
41
$Path = Resolve-Path $Path
42
Write-Host "Replacing tokens in `"$Path`""
43
- $content = Get-Content -LiteralPath $Path | Out-String
+ $content = Get-Content -Encoding UTF8 -LiteralPath $Path | Out-String
44
$Replacements.GetEnumerator() |% {
45
$modifiedContent = $content -replace $_.Key,$_.Value
46
if ($modifiedContent -eq $content) {
0 commit comments