14 lines
321 B
Bash
Executable File
14 lines
321 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
FULLNAME="$(python3 setup.py --fullname)"
|
|
echo "Press [ENTER] to deploy $FULLNAME to /shared"
|
|
read dummy
|
|
|
|
./clear_wheels.sh
|
|
python3 setup.py wheels bdist
|
|
|
|
DISTDIR=$(pwd)/dist
|
|
cd /shared/software/addons
|
|
rm -vf blender_cloud/wheels/*.whl # remove obsolete wheel files
|
|
unzip -o $DISTDIR/$FULLNAME.addon.zip
|