Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
chore: fix unbound variable (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekrich authored Apr 17, 2024
1 parent 0429ad8 commit ce528d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/latest-stable
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugin_dir=$(dirname "$(dirname "$current_script_path")")

curl_opts=(-sI)

GITHUB_API_TOKEN="${GITHUB_API_TOKEN:-${GH_API_TOKEN:-${GITHUB_TOKEN:-${GH_TOKEN}}}}"
GITHUB_API_TOKEN="${GITHUB_API_TOKEN:-${GH_API_TOKEN:-${GITHUB_TOKEN:-${GH_TOKEN:-}}}}"
if [ -n "${GITHUB_API_TOKEN:-}" ]; then
curl_opts=("${curl_opts[@]}" -H "Authorization: token $GITHUB_API_TOKEN")
fi
Expand Down

0 comments on commit ce528d8

Please sign in to comment.