modified: README.md
new file: dependence.py 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
This commit is contained in:
21
packup.bat
Normal file
21
packup.bat
Normal file
@ -0,0 +1,21 @@
|
||||
@echo off
|
||||
REM 依次运行dependence.py和package.py的批处理脚本
|
||||
|
||||
echo 正在运行依赖安装脚本...
|
||||
python dependence.py
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo 运行dependence.py失败! 错误码: %ERRORLEVEL%
|
||||
pause
|
||||
exit /b %ERRORLEVEL%
|
||||
)
|
||||
|
||||
echo 正在运行打包脚本...
|
||||
python package.py
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo 运行package.py失败! 错误码: %ERRORLEVEL%
|
||||
pause
|
||||
exit /b %ERRORLEVEL%
|
||||
)
|
||||
|
||||
echo 所有脚本执行完毕!
|
||||
pause
|
Reference in New Issue
Block a user