Skip to content

Commit

Permalink
debug: disabling install script check on windows for now, as the issu…
Browse files Browse the repository at this point in the history
…e cannot be reproduced

Probably the regression discussed here: curl/curl#13958
  • Loading branch information
iwilltry42 committed Jul 4, 2024
1 parent aaf0234 commit fc6ad34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-install-osmatrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os:
- ubuntu-latest
# - windows-latest # disabled for now due to curl error (probably this regression: https://github.com/curl/curl/issues/13958)
- macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ checkLatestVersion() {
if [[ "$DEBUG" == "true" ]]; then
echo "Resolved latest tag: <$TAG>" >&2
fi
if [[ "$TAG" == "latest" ]]; then
echo "Failed to get the latest version for $REPO_URL"
exit 1
fi
}

# downloadFile downloads the latest binary package and also the checksum
Expand Down

0 comments on commit fc6ad34

Please sign in to comment.