Make pip toggle utf8

This commit is contained in:
Isaac Shoebottom 2024-02-10 18:38:37 -04:00
parent 271c4bfc92
commit 5caeecb0e7

View File

@ -26,7 +26,7 @@ if (Test-Path $location) {
Write-Host $newPipConfig
# Write the new content to the file
$newPipConfig | Out-File $location -Force
$newPipConfig | Out-File $location -Force -Encoding utf8
} else {
# If it doesn't exist, create it
New-Item -Path $location -ItemType File