You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 rivejä
228 B

#!/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}"