Created
May 1, 2019 15:38
-
-
Save EugenMayer/10b79dccf2a48c01c7b0e6cd11e0ce2c to your computer and use it in GitHub Desktop.
This file contains 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 | |
echo "removing current jenv java's to readd them freshly" | |
jenv versions --bare | xargs -n1 jenv remove | |
echo "adding all sdkmans java versions to jenv" | |
find $HOME/.sdkman/candidates/java -type d -maxdepth 1 -mindepth 1 -exec jenv add '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You may want to add in a line to ensure that the jenv config folders exist too:
mkdir -p $HOME/.jenv/versions