You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just installed sdkman on a minimal Rocky Linux box that was missing 'tar' (sdkman was the first package installed).
I needed to dig to find that 'tar' was missing, as I would only get:
Download has failed, aborting!
Can not install java @version at this time...
Upon code inspection, I noticed that app/views/java_post_linux_tarball.scala.txt is missing the function __sdkman_check_commands_present, which should have pointed me in the right direction.
Any particular reason for it to be missing or can I submit the PR to include it?
The text was updated successfully, but these errors were encountered:
You are right, we should be doing a pre installation check to see if tar is present. The right place to do this is along with all the other pre installation checks in the install hooks. This should be present in both the stable and beta variants of the installation hook.
I'd gladly accept a PR for this if you'd be willing.
@martelli Great, well let me know how you get on! Let's start with the beta hook, then once we've confirmed that it works on the beta channel, we can promote to stable.
Hey,
I've just installed sdkman on a minimal Rocky Linux box that was missing 'tar' (sdkman was the first package installed).
I needed to dig to find that 'tar' was missing, as I would only get:
Upon code inspection, I noticed that
app/views/java_post_linux_tarball.scala.txt
is missing the function__sdkman_check_commands_present
, which should have pointed me in the right direction.Any particular reason for it to be missing or can I submit the PR to include it?
The text was updated successfully, but these errors were encountered: