Commit 202eb431 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] write utf8 with ps script

parent 220e3ea7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,4 +6,4 @@ param(
(Get-FileHash .\cat?\c*\*.wav -Algorithm MD5 | Out-String -Width 9999) |
ForEach-Object { $_.replace( -join ((Get-Location) , "\"), ".\") } |
ForEach-Object { $_ -replace (" ", "") } |
Out-File $out_file
 No newline at end of file
Out-File -Encoding utf8 $out_file
 No newline at end of file