install.fairie/docs/scripts/after/run_onchange_after_18-install-sdkman.sh.tmpl.md
2023-08-08 03:06:49 -04:00

1.5 KiB

title description sidebar_label slug githubLocation scriptLocation repoLocation
SDKMAN Install Ensures SDKMAN is installed. 18 SDKMAN Install /scripts/after/run_onchange_after_18-install-sdkman.sh.tmpl https://github.com/megabyte-labs/install.doctor/blob/master/home/.chezmoiscripts/universal/run_onchange_after_18-install-sdkman.sh.tmpl https://github.com/megabyte-labs/install.doctor/raw/master/home/.chezmoiscripts/universal/run_onchange_after_18-install-sdkman.sh.tmpl home/.chezmoiscripts/universal/run_onchange_after_18-install-sdkman.sh.tmpl

SDKMAN Install

Ensures SDKMAN is installed.

Overview

This script ensures SDKMAN (a Java version manager) is installed using the method recommended on their website.

Source Code

#!/usr/bin/env bash
# @file SDKMAN Install
# @brief Ensures SDKMAN is installed.
# @description
#     This script ensures SDKMAN (a Java version manager) is installed using the method recommended on [their
#     website](https://sdkman.io/).

{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}

### Ensure SDKMan is installed (https://sdkman.io/)
if [ ! -d "$SDKMAN_DIR" ]; then
  logg info 'Installing SDKMan via `curl -s "https://get.sdkman.io?rcupdate=false`'
  logg info "Install directory: $SDKMAN_DIR"
  curl -s "https://get.sdkman.io?rcupdate=false" | bash
  logg info 'Running `sdk install java`'
  sdk install java
else
  logg info 'SDKMan appears to already be installed.'
fi