mirror of
https://github.com/placeholder-soft/asdf-foundry-zksync.git
synced 2026-01-12 07:04:07 +08:00
12 lines
260 B
Bash
Executable File
12 lines
260 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"
|
|
|
|
list_all_versions | sort_versions | xargs echo
|