diff --git a/CHANGELOG.md b/CHANGELOG.md index 74c61da8b..97fcae940 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [1.112.4] - 2023-03-31 + +### Fixes +- Fix call to `auditwheel` in `scripts/run_all.sh`. + ## [1.112.3] - 2023-03-30 ### Fixes diff --git a/scripts/run_all.sh b/scripts/run_all.sh index fbceb77a3..87ce41ea3 100755 --- a/scripts/run_all.sh +++ b/scripts/run_all.sh @@ -33,7 +33,7 @@ unset DCC_NEW_TMP_EMAIL # E.g. musllinux_1_1 does not have PyPy interpreters as of 2022-07-10 tox --workdir "$TOXWORKDIR" -e py37,py38,py39,py310,py311,pypy37,pypy38,pypy39 --skip-missing-interpreters true -auditwheel repair "$TOXWORKDIR/wheelhouse/deltachat*" -w "$TOXWORKDIR/wheelhouse" +auditwheel repair "$TOXWORKDIR"/wheelhouse/deltachat* -w "$TOXWORKDIR/wheelhouse" echo -----------------------