move get-content into try, silence errors
This commit is contained in:
parent
5c6c09b24f
commit
8a04d654ef
1
sri.ps1
1
sri.ps1
@ -46,6 +46,7 @@ function hashSHA($type){
|
|||||||
|
|
||||||
function doHash($file, $hash){
|
function doHash($file, $hash){
|
||||||
$fileContents = Get-Content $file -Raw
|
$fileContents = Get-Content $file -Raw
|
||||||
|
$fileContents = Get-Content $file -Raw -ErrorAction SilentlyContinue
|
||||||
try {
|
try {
|
||||||
$hashBytes = $hash.ComputeHash([System.Text.Encoding]::UTF8.GetBytes($fileContents))
|
$hashBytes = $hash.ComputeHash([System.Text.Encoding]::UTF8.GetBytes($fileContents))
|
||||||
return [System.Convert]::ToBase64String($hashBytes)
|
return [System.Convert]::ToBase64String($hashBytes)
|
||||||
|
Loading…
Reference in New Issue
Block a user