Closed qlrd closed 1 month ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 94.67%. Comparing base (
f172162
) to head (6100d0a
). Report is 2 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Thank you!
What is this PR for?
A user on KruxBR found an issue on integrity verification step on Windows, more specifically, in powershell's
Get-FileHash
andGet-Content
commands.Since the
Get-FileHash
output a hash in upper case,when comparing with the output ofGet-Content
in lower case, the verification will result in aFalse
value.But this is a Negative False.
To fix this, we expanded the power shell command as well adding steps for a scrutiny procedure.
What is the purpose of this pull request?