From 2920b6033caa83faf8009133e0ff143a99d7316d Mon Sep 17 00:00:00 2001 From: vnherdeiro Date: Sat, 7 Sep 2024 17:40:02 +0100 Subject: [PATCH] fix CI --- build-python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-python.sh b/build-python.sh index cfec5c7b864..feb625bd0a5 100755 --- a/build-python.sh +++ b/build-python.sh @@ -346,7 +346,7 @@ if test "${BUILD_SDIST}" = true; then python -m build \ --sdist \ --outdir ../dist \ - ${BUILD_ARGS:+ -o "$BUILD_ARGS"} \ + ${BUILD_ARGS:+${BUILD_ARGS}} \ . fi @@ -356,7 +356,7 @@ if test "${BUILD_WHEEL}" = true; then python -m build \ --wheel \ --outdir ../dist \ - ${BUILD_ARGS:+ -o "$BUILD_ARGS"} \ + ${BUILD_ARGS:+${BUILD_ARGS}} \ . fi