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:
17
plugins/version-ext-compat/install.sh
Executable file
17
plugins/version-ext-compat/install.sh
Executable 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}"
|
||||
Reference in New Issue
Block a user