Skip to content

Commit

Permalink
Merge pull request #572 from TaYaKi71751/dev-fix-violet-build-windows…
Browse files Browse the repository at this point in the history
…-utf8-wsalt-salt

Fix violet-build.yml
  • Loading branch information
violet-dev authored Oct 26, 2024
2 parents 3d0416d + fc17ac0 commit 074b83f
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 074b83f

Please sign in to comment.