Skip to content

Commit f8ab131

Browse files
committed
macosx: skip the "Current" framework
This causes as duplicate build.
1 parent 2c56118 commit f8ab131

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/macpython-build-wheels.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ rm -rf ${SCRIPT_DIR}/../venvs
2121
VENVS=()
2222
mkdir -p ${SCRIPT_DIR}/../venvs
2323
for PYBIN in "${PYBINARIES[@]}"; do
24+
if [[ $(basename $PYBIN) = "Current" ]]; then
25+
continue
26+
fi
2427
py_mm=$(basename ${PYBIN})
2528
VENV=${SCRIPT_DIR}/../venvs/${py_mm}
2629
VIRTUALENV_EXECUTABLE=${PYBIN}/bin/virtualenv

0 commit comments

Comments
 (0)