mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
3bfd91de51
than compatibility plugin.
17 lines
228 B
Bash
Executable file
17 lines
228 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -z "${PREFIX}" ]; then
|
|
PREFIX="/usr/local"
|
|
fi
|
|
|
|
BIN_PATH="${PREFIX}/bin"
|
|
|
|
mkdir -p "${BIN_PATH}"
|
|
|
|
for file in bin/*; do
|
|
cp "${file}" "${BIN_PATH}"
|
|
done
|
|
|
|
echo "Installed pyenv-version-ext at ${PREFIX}"
|