Skip to content
Snippets Groups Projects
Commit 3bc4af97 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Fix encoding

parent c280c223
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ function Copy-ServiceFiles { ...@@ -43,7 +43,7 @@ function Copy-ServiceFiles {
Copy-Item -Recurse -Force -Path "$ServiceName\*" -Destination $ServiceDir Copy-Item -Recurse -Force -Path "$ServiceName\*" -Destination $ServiceDir
Copy-Item -Recurse -Force -Path "conf-example" -Destination $ServiceDir Copy-Item -Recurse -Force -Path "conf-example" -Destination $ServiceDir
# create a dummy log file, so admins can already start watching it: # create a dummy log file, so admins can already start watching it:
Out-File -FilePath $ServiceLog -InputObject "$($ServiceName) installed" Out-File -FilePath $ServiceLog -InputObject "$($ServiceName) installed" -Encoding utf8
Write-Host "[OK]" -Fore Green Write-Host "[OK]" -Fore Green
} }
catch { catch {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment