diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index d5a0ee7800..689a4a06af 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -177,9 +177,9 @@ jobs: find "${BUNDLE_DIR}" -name "*.pyc" -delete 2>/dev/null || true find "${BUNDLE_DIR}" -name "*.pyo" -delete 2>/dev/null || true - # List what's in bin to verify FreeCAD is there - echo "Binaries in bundle:" - ls -la "${BUNDLE_DIR}/bin/" | head -20 + # List key binaries to verify FreeCAD is there + echo "Key binaries in bundle:" + ls -la "${BUNDLE_DIR}/bin/FreeCAD" "${BUNDLE_DIR}/bin/FreeCADCmd" 2>/dev/null || echo "FreeCAD binaries not found!" echo "Final bundle size: $(du -sh ${BUNDLE_DIR} | cut -f1)"