···3344 runHook preBuild
5566+ # Put the wheel to dist/ so that regular Python tooling can find it.
77+ local dist="$PWD/dist"
88+69 if [ ! -z "${buildAndTestSubdir-}" ]; then
710 pushd "${buildAndTestSubdir}"
811 fi
···1619 --manylinux off \
1720 --strip \
1821 --release \
2222+ --out "$dist" \
1923 ${maturinBuildFlags-}
2024 )
21252226 if [ ! -z "${buildAndTestSubdir-}" ]; then
2327 popd
2428 fi
2525-2626- # Move the wheel to dist/ so that regular Python tooling can find it.
2727- mkdir -p dist
2828- mv ${cargoRoot:+$cargoRoot/}target/wheels/*.whl dist/
29293030 # These are python build hooks and may depend on ./dist
3131 runHook postBuild