Skip to content

Commit

Permalink
Merge pull request #28470 from ProvableHQ/fix/windows-ci
Browse files Browse the repository at this point in the history
Fix windows release CI.
  • Loading branch information
d0cd authored Dec 3, 2024
2 parents b66eb4b + 00c54b0 commit 2f49d3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ jobs:

- name: Verify Cargo.lock Exists
run: |
if [ ! -f Cargo.lock ]; then
echo "Error: Cargo.lock file is missing. Aborting build."
if (!(Test-Path "Cargo.lock")) {
Write-Host "Error: Cargo.lock file is missing. Aborting build."
exit 1
fi
}
- name: Build Leo
run: |
Expand Down

0 comments on commit 2f49d3b

Please sign in to comment.