diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2022-10-09 19:30:42 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2022-10-09 19:30:42 +0200 |
commit | c7eead9c45b8b165bcf1a7df7f02a4786918c43a (patch) | |
tree | c1c3117683e94f92ec789f6f8c078e28869e97fb /openjdk-runtime | |
parent | 0acc58958323e4e3418f35b84fe7573910d07cf5 (diff) |
openjdk-runtime: Fix shebangs, pass -L to cURL.
Change-Id: I021e9e7c4996f0fbd27d4f62ab50d970bb987ecc
Diffstat (limited to 'openjdk-runtime')
-rwxr-xr-x | openjdk-runtime/build | 2 | ||||
-rwxr-xr-x | openjdk-runtime/prepare | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/openjdk-runtime/build b/openjdk-runtime/build index 0719996..79a9d7f 100755 --- a/openjdk-runtime/build +++ b/openjdk-runtime/build @@ -1,4 +1,4 @@ -#! /bin/sh +#! /bin/bash # SPDX-FileCopyrightText: © 2022 Matthias Andreas Benkard <code@mail.matthias.benkard.de> # # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/openjdk-runtime/prepare b/openjdk-runtime/prepare index f0fddba..8a348f4 100755 --- a/openjdk-runtime/prepare +++ b/openjdk-runtime/prepare @@ -1,4 +1,4 @@ -#! /bin/sh +#! /bin/bash # SPDX-FileCopyrightText: © 2022 Matthias Andreas Benkard <code@mail.matthias.benkard.de> # # SPDX-License-Identifier: GPL-3.0-or-later @@ -7,10 +7,10 @@ set -euo pipefail cd "$(dirname $(readlink -e "$0"))" -openjdk_package_info=$(curl "https://api.foojay.io/disco/v2.0/packages?package_type=jdk&latest=per_distro&directly_downloadable=true&release_status=ga&javafx_bundled=false&operating_system=linux&architecture=x64&archive_type=tar.gz&distro=oracle_open_jdk") +openjdk_package_info=$(curl -L "https://api.foojay.io/disco/v2.0/packages?package_type=jdk&latest=per_distro&directly_downloadable=true&release_status=ga&javafx_bundled=false&operating_system=linux&architecture=x64&archive_type=tar.gz&distro=oracle_open_jdk") openjdk_package_uri=$(jq -r '.result[0].links.pkg_download_redirect' <<<"${openjdk_package_info}") openjdk_package_filename=$(jq -r '.result[0].filename' <<<"${openjdk_package_info}") -curl --fail --create-dirs -C - -o "jdk-dist/${openjdk_package_filename}" "${openjdk_package_uri}" +curl --fail --create-dirs -L -C - -o "jdk-dist/${openjdk_package_filename}" "${openjdk_package_uri}" ln -svf "${openjdk_package_filename}" "jdk-dist/latest.tar.gz" |