Co-authored-by: hebiao064 <hebiaobuaa@gmail.com> Co-authored-by: yinfan98 <1106310035@qq.com>
18 lines
333 B
Bash
Executable File
18 lines
333 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
WHEEL_DIR="dist"
|
|
|
|
wheel_files=($WHEEL_DIR/*.whl)
|
|
for wheel in "${wheel_files[@]}"; do
|
|
new_wheel="${wheel/linux/manylinux2014}"
|
|
|
|
if [[ "$wheel" != "$new_wheel" ]]; then
|
|
echo "Renaming $wheel to $new_wheel"
|
|
mv -- "$wheel" "$new_wheel"
|
|
|
|
fi
|
|
done
|
|
|
|
echo "Wheel renaming completed."
|