Fix curl command in download-latest script

This commit is contained in:
Clémentine Urquizar 2022-02-08 16:17:53 +01:00
parent 752a0e13ad
commit af65ccfd6a
No known key found for this signature in database
GPG Key ID: D8E7CC7422E77E1A
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ esac
# Fetch the Meilisearch binary
link="https://github.com/meilisearch/meilisearch/releases/download/$latest/$release_file"
curl --fail-with-body -OL "$link"
curl --fail -OL "$link"
if [ $? -ne 0 ]; then
fetch_release_failure_usage
exit 1