···24 ${maturinBuildFlags-}
25 )
2627- runHook postBuild
28-29 if [ ! -z "${buildAndTestSubdir-}" ]; then
30 popd
31 fi
···33 # Move the wheel to dist/ so that regular Python tooling can find it.
34 mkdir -p dist
35 mv target/wheels/*.whl dist/
0003637 echo "Finished maturinBuildHook"
38}
···24 ${maturinBuildFlags-}
25 )
260027 if [ ! -z "${buildAndTestSubdir-}" ]; then
28 popd
29 fi
···31 # Move the wheel to dist/ so that regular Python tooling can find it.
32 mkdir -p dist
33 mv target/wheels/*.whl dist/
34+35+ # These are python build hooks and may depend on ./dist
36+ runHook postBuild
3738 echo "Finished maturinBuildHook"
39}