diff --git a/download-latest.sh b/download-latest.sh index 96cd3414a..301561c31 100644 --- a/download-latest.sh +++ b/download-latest.sh @@ -73,8 +73,7 @@ semverLT() { get_latest() { temp_file='temp_file' # temp_file needed because the grep would start before the download is over - if [[ -z "${GITHUB_PAT}" ]] - then + if [ -z "$GITHUB_PAT" ]; then curl -s 'https://api.github.com/repos/meilisearch/MeiliSearch/releases' > "$temp_file" || return 1 else curl -H "Authorization: token ${GITHUB_PAT}" -s 'https://api.github.com/repos/meilisearch/MeiliSearch/releases' > "$temp_file" || return 1