Skip to content

Commit

Permalink
Don't use Unicode escape sequences
Browse files Browse the repository at this point in the history
It seems they are not recognized.. I don't know why, but who cares
  • Loading branch information
mlocati committed Oct 24, 2024
1 parent 126988b commit eb02508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ runs:
if ($actualHash -ine $expectedHash) {
throw "Invalid hash of the downloaded setup!`nExpected: $expectedHash`nActual : $actualHash"
} else {
Write-Output -InputObject "`u{2705} The downloaded file has the expected hash ($expectedHash)"
Write-Output -InputObject "The downloaded file has the expected hash ($expectedHash)"
}
}
}
Expand Down

0 comments on commit eb02508

Please sign in to comment.