We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ca1013 + 51875f6 commit 80b4f92Copy full SHA for 80b4f92
Expand-Template.ps1
@@ -36,7 +36,7 @@ function Replace-Placeholders {
36
37
$Path = Resolve-Path $Path
38
Write-Host "Replacing tokens in `"$Path`""
39
- $content = Get-Content -Path $Path | Out-String
+ $content = Get-Content -Encoding UTF8 -Path $Path | Out-String
40
$Replacements.GetEnumerator() |% {
41
$modifiedContent = $content -replace $_.Key,$_.Value
42
if ($modifiedContent -eq $content) {
0 commit comments