joy,zhou 4471e8338c add
2021-02-02 15:10:03 +08:00

14 lines
230 B
Bash
Executable File

#!/bin/bash -e
if [ -e "./demo.zip" ] ; then
rm ./demo.zip
fi
rm -rf tmp
mkdir tmp
cp index.py tmp/
cd tmp
pip3 install -t . iotedge_driver_link_sdk==0.0.2 #打包驱动SDK
zip -r demo.zip .
cd ..
cp tmp/demo.zip .
rm -rf tmp