Manage your Java environment
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
backuppath="$PATH" |
|
|
|
PATH="$(remove_from_path "${JENV_ROOT}/shims")" |
|
SCALA_BIN="$(command -v "scala" || true)" |
|
SCALAC_BIN="$(command -v "scalac" || true)" |
|
FSC_BIN="$(command -v "fsc" || true)" |
|
|
|
|
|
PATH="$backuppath" |
|
|
|
make_shims "$SCALA_BIN" |
|
make_shims "$SCALAC_BIN" |
|
make_shims "$FSC_BIN" |
|
|
|
|
|
|
|
|