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.

17 line
228 B

  1. #!/bin/sh
  2. set -e
  3. if [ -z "${PREFIX}" ]; then
  4. PREFIX="/usr/local"
  5. fi
  6. BIN_PATH="${PREFIX}/bin"
  7. mkdir -p "${BIN_PATH}"
  8. for file in bin/*; do
  9. cp "${file}" "${BIN_PATH}"
  10. done
  11. echo "Installed pyenv-version-ext at ${PREFIX}"