mirror of https://github.com/jenv/jenv.git
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.
23 lines
412 B
23 lines
412 B
|
|
|
|
backuppath="$PATH" |
|
|
|
PATH="$(remove_from_path "${JENV_ROOT}/shims")" |
|
GROOVY_BIN="$(command -v "groovy" || true)" |
|
make_shims "$GROOVY_BIN" |
|
|
|
GROOVY_BIN="$(command -v "groovyConsole" || true)" |
|
make_shims "$GROOVY_BIN" |
|
|
|
GROOVY_BIN="$(command -v "groovyc" || true)" |
|
make_shims "$GROOVY_BIN" |
|
|
|
GROOVY_BIN="$(command -v "groovysh" || true)" |
|
make_shims "$GROOVY_BIN" |
|
|
|
|
|
PATH="$backuppath" |
|
|
|
|
|
|
|
|
|
|