-
Notifications
You must be signed in to change notification settings - Fork 98
Reworked setting of bash JAVA_HOME #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Johnny-Malizia
wants to merge
1
commit into
halcyon:master
Choose a base branch
from
Johnny-Malizia:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,20 @@ | ||
| asdf_update_java_home() { | ||
| local java_path | ||
| java_path="$(asdf which java)" | ||
| java_path="$(asdf where java)" | ||
| if [[ -n "${java_path}" ]]; then | ||
| export JAVA_HOME | ||
| JAVA_HOME="$(dirname "$(dirname "$(realpath "${java_path}")")")" | ||
| JAVA_HOME="${java_path}" | ||
| fi | ||
| } | ||
|
|
||
| prompt_command() { | ||
| if [[ "${PWD}" == "${LAST_PWD}" ]]; then | ||
| return | ||
| fi | ||
| LAST_PWD="${PWD}" | ||
| preexec () { | ||
| asdf_update_java_home | ||
| } | ||
|
|
||
| export PROMPT_COMMAND="${PROMPT_COMMAND:+${PROMPT_COMMAND}; prompt_command}" | ||
| export PROMPT_COMMAND="${PROMPT_COMMAND:-prompt_command}" | ||
| preexec_invoke_exec () { | ||
| [ -n "${COMP_LINE}" ] && return # do nothing if completing | ||
| [ "${BASH_COMMAND}" = "${PROMPT_COMMAND}" ] && return # don't cause a preexec for $PROMPT_COMMAND | ||
| preexec | ||
| } | ||
|
|
||
| trap 'preexec_invoke_exec' DEBUG | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might be ok - the reason we switched to
whichis because it behaves differently when the jdk is set tosystem.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like the call to
asdfitself is what's slowing things down, so using thewherecommand suffers the same lag. I wonder if there is some sort of callback that we can subscribe to whenasdfidentifies that it needs to use a new.tools-version.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to follow up on my last train of thought. The callback option may not actually work because the tool versions are "not known" until the shims are actually executed. So when calling something like
java -version,asdfdoesn't know which installed Java to use until at that very moment. If we were saving the last known Java version somewhere, we could potentially be out of sync because we may have traversed to a different folder already. A callback would not be able to keep the JAVA_HOME up-to-date in the same manner.So to summarize, this is a pretty tough nut to crack. @smorimoto reviewed my PRs in the past; maybe they could weigh in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to update this to work when no java is available otherwise
JAVA_HOMEwould get set to whateverasdf where javawas outputting.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jsmestad / @halcyon :
This may be a stupid question and I apologise if it is but why are you exporting JAVA_HOME before setting it rather than after?