mirror of
https://github.com/alexgo-io/asdf-clarinet.git
synced 2026-01-12 14:34:07 +08:00
12 lines
295 B
Bash
Executable File
12 lines
295 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
current_script_path=${BASH_SOURCE[0]}
|
|
plugin_dir=$(dirname "$(dirname "$current_script_path")")
|
|
|
|
# shellcheck source=./lib/utils.bash
|
|
source "${plugin_dir}/lib/utils.bash"
|
|
|
|
install_version "$ASDF_INSTALL_TYPE" "$ASDF_INSTALL_VERSION" "$ASDF_INSTALL_PATH"
|