From 3bcd34533ec857156543e37d1812b0a37614db67 Mon Sep 17 00:00:00 2001 From: Poiuy7312 Date: Mon, 18 Sep 2023 14:27:48 -0400 Subject: [PATCH] Encoding Windows --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 447aabb6..dd1bd716 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,7 +72,7 @@ jobs: - name: Encode Windows if: matrix.os == 'windows-latest' run: | - $OutputEncoding = [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8 + $PSDefaultParameterValues['*:Encoding'] = 'utf8' # Run the program - name: Run program if: always()