Skip to content

Commit

Permalink
wip4
Browse files Browse the repository at this point in the history
  • Loading branch information
FichteFoll committed Jan 12, 2025
1 parent c2cc955 commit ae29983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntax-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ resolve_build() {

command -v jq >/dev/null
if [[ $INPUT_BUILD == stable ]]; then
curl -s "$stable_check_url" | jq '.latest_version' | read -r build
build="$(curl -s "$stable_check_url" | jq '.latest_version')"
echo >&2 "Latest stable build: $build"
elif [[ $INPUT_BUILD == latest ]]; then
curl -s "$dev_check_url" | jq '.latest_version' | read -r build
build="$(curl -s "$dev_check_url" | jq '.latest_version')"
echo >&2 "Latest dev build: $build"
fi
echo "$build"
Expand Down

0 comments on commit ae29983

Please sign in to comment.