new file: package.py new file: packup.bat new file: packup.sh new file: requirements.txt new file: scripts/__init__.py new file: scripts/file_store_api.py new file: src/__init__.py new file: src/config.toml new file: src/modules/__init__.py new file: src/modules/plugin_modules.py new file: src/modules/user_module.py new file: src/process.py new file: test.py
19 lines
395 B
Bash
19 lines
395 B
Bash
#!/bin/bash
|
|
# 依次运行dependence.py和package.py的shell脚本
|
|
|
|
echo "正在运行依赖安装脚本..."
|
|
python3 dependence.py
|
|
if [ $? -ne 0 ]; then
|
|
echo "运行dependence.py失败! 错误码: $?"
|
|
exit $?
|
|
fi
|
|
|
|
echo "正在运行打包脚本..."
|
|
python3 package.py
|
|
if [ $? -ne 0 ]; then
|
|
echo "运行package.py失败! 错误码: $?"
|
|
exit $?
|
|
fi
|
|
|
|
echo "所有脚本执行完毕!"
|