1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-16 23:33:45 -05:00

rename to version-ext-compat because pyenv-version-ext must precede

than compatibility plugin.
This commit is contained in:
Yamashita Yuu
2013-06-13 12:37:35 +09:00
parent c7e139186b
commit 3bfd91de51
5 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
#!/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}"