Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Apr 30, 2024
1 parent b96c3ac commit 8c68399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ jobs:
run: |
curl -L "$env:VS2017_URL" -o "$HOME/vs2017.exe"
actualHash=(Get-FileHash -Path "$HOME/vs2017.exe" -Algorithm SHA256).Hash
if ( "$actualHash" == "$env.VS2017_SHA" ); then
if [ ( "$actualHash" == "$env.VS2017_SHA" ) ]; then
echo "Checksums Match!"
else
echo "ERROR - Checksums Do Not Match"
Expand All @@ -351,7 +351,7 @@ jobs:
run: |
curl -L "$env:VS2019_URL" -o "$HOME/vs2019.exe"
actualHash=(Get-FileHash -Path "$HOME/vs2019.exe" -Algorithm SHA256).Hash
if ( "$actualHash" == "$env.VS2019_SHA" ); then
if [ ( "$actualHash" == "$env.VS2019_SHA" ) ]; then
echo "Checksums Match!"
else
echo "ERROR - Checksums Do Not Match"
Expand Down

0 comments on commit 8c68399

Please sign in to comment.