Created
May 15, 2020 16:56
-
-
Save bdemers/d8479132c49e350dcb3e7d5c1a91fd84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20.0.0.r11-grl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# in ~/.sdkman/ext/sdkman-java.sh | |
function __sdk_java { | |
if [[ -f .java-version ]]; then | |
VERSION=$(cat .java-version) | |
__sdk_use java "$VERSION" | |
else | |
echo ".java-version file is missing" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment