Skip to content

Commit

Permalink
Merge pull request #234 from kaytu-io/fix-install-script
Browse files Browse the repository at this point in the history
fix: Fixes install script
  • Loading branch information
salehkhazaei committed Jun 19, 2024
2 parents 38ee189 + c76b080 commit d1856c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ get_release_version() {
# Find version from Github metadata
get_latest_pre_release_version() {
local RELEASE_URL="https://api.github.com/repos/${GITHUB_REPO}/releases"
KAYTU_VERSION=$(jq -r 'map(select(.prerelease)) | first | .tag_name' <<< $(curl --silent $RELEASE_URL))
KAYTU_VERSION=$(curl --silent $RELEASE_URL | jq -r 'map(select(.prerelease)) | first | .tag_name')
}

# Download from file from URL
Expand Down

0 comments on commit d1856c3

Please sign in to comment.