Skip to content

Commit 1722c77

Browse files
committed
修复目录问题,开始打包
1 parent fc4d789 commit 1722c77

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-unified.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ jobs:
194194
echo "dist目录内容:"
195195
ls -la dist/
196196
197-
# deb包构建已经在build_pyinstaller.py或build_nuitka.py中完成
198-
# 检查deb包是否生成
199-
if [ ! -f "zip/*.deb" ]; then
197+
# deb包构建已经在build_pyinstaller.py中完成
198+
# 检查deb包是否生成(使用正确的通配符检查方式)
199+
if ! ls zip/*.deb 2>/dev/null | grep -q .; then
200200
echo "错误:deb包未生成,构建可能失败了"
201201
echo "zip目录内容:"
202202
ls -la zip/

0 commit comments

Comments
 (0)