Merge pull request #1604 from Nascire/alpine-fix

Fix git master install on alpine 3.12+
This commit is contained in:
Kirill Ponomarev 2021-10-07 11:45:39 +02:00 committed by GitHub
commit 98c9518c8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5011,8 +5011,8 @@ install_alpine_linux_git_deps() {
fi
fi
else
apk -U add python2 py2-pip py2-setuptools || return 1
_PY_EXE=python2
apk -U add python3 python3-dev py3-pip py3-setuptools g++ linux-headers zeromq-dev || return 1
_PY_EXE=python3
return 0
fi