You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
you have a bug in your tasks. When fetching file content with the Get-Content cmdlet you aren't specifying the Encoding flag, so powershell uses the default encoding which is System.Text.ASCIIEncoding, so any characters not in that set will not be displayed correctly.
Example is in your RunMySqlScript.ps1, line 33.
With kind regards,
Tomislav
The text was updated successfully, but these errors were encountered:
Hi,
you have a bug in your tasks. When fetching file content with the Get-Content cmdlet you aren't specifying the Encoding flag, so powershell uses the default encoding which is System.Text.ASCIIEncoding, so any characters not in that set will not be displayed correctly.
Example is in your RunMySqlScript.ps1, line 33.
With kind regards,
Tomislav
The text was updated successfully, but these errors were encountered: