5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
10 lines
309 B
Bash
10 lines
309 B
Bash
# Setup hook for storing dist folder (wheels/sdists) in a separate output
|
|
echo "Sourcing python-catch-conflicts-hook.sh"
|
|
|
|
pythonOutputDistPhase() {
|
|
echo "Executing pythonOutputDistPhase"
|
|
mv "dist" "$dist"
|
|
echo "Finished executing pythonOutputDistPhase"
|
|
}
|
|
|
|
preFixupPhases+=" pythonOutputDistPhase"
|