13 lines
331 B
Bash
Executable File
13 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
|
|
d=$(pwd)
|
|
if test x"$(basename $d)" = xbuilder; then
|
|
d=${d}/../
|
|
fi
|
|
if ! [ -e ${d}/setup.py ] ; then
|
|
echo "Unknown directory. Please move to the root of cosmotool source tree."
|
|
exit 1
|
|
fi
|
|
|
|
podman run -ti --rm -e PLAT=manylinux2010_x86_64 -v ${d}:/io:Z quay.io/pypa/manylinux2010_x86_64 /io/builder/build-wheels.sh
|