pyenv/plugins/version-ext-compat/install.sh
2013-06-13 12:37:35 +09:00

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