Skip to content

Commit

Permalink
Fix to use UTF8
Browse files Browse the repository at this point in the history
  • Loading branch information
TaYaKi71751 committed Oct 23, 2024
1 parent 3d0416d commit d96cfeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/violet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,14 @@ jobs:
try {
Invoke-WebRequest -Uri $secretSaltUrl -UseBasicParsing -OutFile "salt.dart"
} catch {
"String getValid(String vToken) { return vToken; }" | Out-File -FilePath "salt.dart"
"String getValid(String vToken) { return vToken; }" | Out-File -Encoding "UTF8" -FilePath "salt.dart"
}
# Try downloading SECRET_WSALT
try {
Invoke-WebRequest -Uri $secretWSaltUrl -UseBasicParsing -OutFile "wsalt.dart"
} catch {
"String getValid(String vToken) { return vToken; }" | Out-File -FilePath "wsalt.dart"
"String getValid(String vToken) { return vToken; }" | Out-File -Encoding "UTF8" -FilePath "wsalt.dart"
}
cd ../..
Expand Down

0 comments on commit d96cfeb

Please sign in to comment.