1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 06:43:53 -05:00
Files
pyenv/plugins/pyenv-version-ext-compat/install.sh
Yamashita Yuu daa12e97c6 rename plugin
2013-06-13 12:04:09 +09:00

18 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}"