Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions bin/functions
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ function install {
;;
*tar.gz) tar xf "${package_filename}"
;;
*tgz) tar xf "${package_filename}"
;;
*) echo "Cannot extract ${package_filename}"
exit 1
;;
Expand Down
2 changes: 1 addition & 1 deletion update_data.bash
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ do
done

RELEASE_QUERY='.[]
| select(.file_type | IN("tar.gz", "zip"))
| select(.file_type | IN("tar.gz", "tgz", "zip"))
| .["features"] = (.features | map(select(IN("musl", "javafx", "lite", "large_heap", "certified"))))
| [([.vendor, if (.image_type == "jre") then .image_type else empty end, if (.jvm_impl == "openj9") then .jvm_impl else empty end, if ((.features | length) == 0) then empty else (.features | join("-")) end, .version] | join("-")), .filename, .url, .sha256]
| @tsv'
Expand Down
Loading