We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bcadae commit a804778Copy full SHA for a804778
Makefile
@@ -171,8 +171,9 @@ docs:
171
ifeq ($(DETECTED_OS), linux)
172
deploy:
173
docker run \
174
- -v $(shell pwd):/io quay.io/pypa/manylinux_2_34_x86_64 \
175
- -u $(id -u ${USER}):$(id -g ${USER}) \
+ -v $(shell pwd):/io \
+ -u $(shell id -u ${USER}):$(shell id -g ${USER}) \
176
+ quay.io/pypa/manylinux_2_34_x86_64 \
177
/bin/bash -c "cd /io && LD_LIBRARY_PATH=/io/build/Release/bin/isx/lib:$LD_LIBRARY_PATH auditwheel repair /io/build/Release/bin/dist/isx*.whl"
178
$(VENV_ACTIVATE) $(VENV_NAME) && \
179
pip install twine && \
0 commit comments