Skip to content

Commit

Permalink
fix: wrong encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz committed Aug 26, 2023
1 parent 05a72d3 commit 8db7e42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .CI/build-installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ if ($isTagged) {
# This is a release.
# Make sure, any existing `modes` file is overwritten for the user,
# for example when updating from nightly to stable.
Write-Output "" > Chatterino2/modes;
Write-Output "" | Out-File Chatterino2/modes -Encoding ASCII;
$installerBaseName = "Chatterino.Installer";
}
else {
Write-Output nightly > Chatterino2/modes;
Write-Output nightly | Out-File Chatterino2/modes -Encoding ASCII;
$defines = "/DIS_NIGHTLY=1";
$installerBaseName = "Chatterino.Nightly.Installer";
}
Expand Down

0 comments on commit 8db7e42

Please sign in to comment.