Skip to content

Commit

Permalink
Merge pull request #4161 from dsgouda/generateps1
Browse files Browse the repository at this point in the history
Fixing encoding so github can see diffs
  • Loading branch information
dsgouda authored Mar 26, 2018
2 parents fde0bf5 + 4d22fd6 commit dcb750c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/generateTool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ catch {
Write-ErrorLog $_.ToString() -logToFile
}
finally {
Get-OutputStream | Out-File -FilePath $logFile | Out-Null
Get-ErrorStream | Out-File -FilePath $logFile -Append | Out-Null
Get-OutputStream | Out-File -FilePath $logFile -Encoding utf8 | Out-Null
Get-ErrorStream | Out-File -FilePath $logFile -Append -Encoding utf8 | Out-Null
Clear-OutputStreams
Get-Module -ListAvailable "$modulePath" | Remove-Module
}

0 comments on commit dcb750c

Please sign in to comment.