···34 runHook preBuild
50006 if [ ! -z "${buildAndTestSubdir-}" ]; then
7 pushd "${buildAndTestSubdir}"
8 fi
···16 --manylinux off \
17 --strip \
18 --release \
019 ${maturinBuildFlags-}
20 )
2122 if [ ! -z "${buildAndTestSubdir-}" ]; then
23 popd
24 fi
25-26- # Move the wheel to dist/ so that regular Python tooling can find it.
27- mkdir -p dist
28- mv ${cargoRoot:+$cargoRoot/}target/wheels/*.whl dist/
2930 # These are python build hooks and may depend on ./dist
31 runHook postBuild
···34 runHook preBuild
56+ # Put the wheel to dist/ so that regular Python tooling can find it.
7+ local dist="$PWD/dist"
8+9 if [ ! -z "${buildAndTestSubdir-}" ]; then
10 pushd "${buildAndTestSubdir}"
11 fi
···19 --manylinux off \
20 --strip \
21 --release \
22+ --out "$dist" \
23 ${maturinBuildFlags-}
24 )
2526 if [ ! -z "${buildAndTestSubdir-}" ]; then
27 popd
28 fi
00002930 # These are python build hooks and may depend on ./dist
31 runHook postBuild