From 05ed2921ad1261ee9d816464032c606e093ea5da Mon Sep 17 00:00:00 2001 From: Bill Little Date: Fri, 30 Jul 2021 21:45:48 +0100 Subject: [PATCH] Update entrypoint.sh Fix `auditwheel` loop path --- .github/workflows/actions/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/entrypoint.sh b/.github/workflows/actions/entrypoint.sh index 8320eb6d..71c6fed6 100755 --- a/.github/workflows/actions/entrypoint.sh +++ b/.github/workflows/actions/entrypoint.sh @@ -13,6 +13,6 @@ for PYTHON in ${PYTHONS[@]}; do /opt/python/${PYTHON}/bin/python -m build --sdist --wheel . --outdir ${WHEELHOUSE} done -for whl in ${WHEELHOUSE} cf_units*.whl; do - auditwheel repair $whl +for BDIST_WHEEL in ${WHEELHOUSE}/cf_units*.whl; do + auditwheel repair ${BDIST_WHEEL} done