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.

18 lines
257 B

пре 12 година
пре 12 година
пре 12 година
пре 12 година
  1. #!/bin/sh
  2. # Usage: PREFIX=/usr/local ./install.sh
  3. #
  4. # Installs pyenv-virtualenv under $PREFIX.
  5. set -e
  6. cd "$(dirname "$0")"
  7. if [ -z "${PREFIX}" ]; then
  8. PREFIX="/usr/local"
  9. fi
  10. BIN_PATH="${PREFIX}/bin"
  11. mkdir -p "$BIN_PATH"
  12. install -p bin/* "$BIN_PATH"