From 2185e27cd7b9967f0581b53af9fab433ca26b43f Mon Sep 17 00:00:00 2001 From: Marco Vermeulen Date: Fri, 19 Aug 2022 10:56:13 +0100 Subject: [PATCH] Update SDKMAN installation instructions The current documentation has the following to determine the Java version when installing through SDKMAN: ``` sdk list java | grep -o "\b8\.[0-9]*\.[0-9]*\-tem" | head -1 ``` When running this, it results in the oldest Temurin version available, currently `8.0.345-tem`. Is this really what we want? If you do a simple `sdk install java` with no qualifier, it will bring down the LTS version of Temurin which is currently set to `17.0.4-tem`. --- src/includes/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/includes/install.sh b/src/includes/install.sh index 9405a0c4..262235e1 100644 --- a/src/includes/install.sh +++ b/src/includes/install.sh @@ -1,2 +1,2 @@ -\$ sdk install java \$(sdk list java | grep -o "\b8\.[0-9]*\.[0-9]*\-tem" | head -1) -\$ sdk install sbt \ No newline at end of file +\$ sdk install java +\$ sdk install sbt