This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
asdf-python/bin/list-all

11 lines
189 B
Bash
Executable file

#!/usr/bin/env bash
source $(dirname $0)/utils.sh
list_all() {
ensure_python_build_installed
$(python_build_path) --definitions | tr '\n' ' '
rm -rf "$tmp_download_dir"
}
list_all