Merge pull request #82 from paulswartz/support-patches
feat: support patching during install
This commit is contained in:
commit
8ab052fced
1 changed files with 8 additions and 2 deletions
10
bin/install
10
bin/install
|
@ -16,8 +16,14 @@ install_python() {
|
||||||
fi
|
fi
|
||||||
install_or_update_python_build
|
install_or_update_python_build
|
||||||
|
|
||||||
echo "python-build $version $install_path"
|
local patch_file=${ASDF_PYTHON_PATCHES_DIRECTORY}/${version}.patch
|
||||||
$(python_build_path) "$version" "$install_path"
|
if [ -f "$patch_file" ]; then
|
||||||
|
echo "python-build $version $install_path -p < $patch_file"
|
||||||
|
$(python_build_path) "$version" "$install_path" -p < $patch_file
|
||||||
|
else
|
||||||
|
echo "python-build $version $install_path"
|
||||||
|
$(python_build_path) "$version" "$install_path"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install_default_python_packages() {
|
install_default_python_packages() {
|
||||||
|
|
Loading…
Reference in a new issue