提交v2.2.2

This commit is contained in:
xin
2025-11-27 18:50:16 +08:00
parent 612bf24b15
commit 9e003b2ee7
14 changed files with 76 additions and 14 deletions

7
dpkg/preinst Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
set -e
# 删除可能引起冲突的文件
if [ -f /home/data/ChangeLog.md ]; then
echo "Removing conflicting ChangeLog.md file..."
rm -f /home/data/ChangeLog.md
fi