From e5f7effc5c42f524ead25570891132d6b584a54b Mon Sep 17 00:00:00 2001 From: forbes Date: Thu, 29 Jan 2026 06:11:15 -0600 Subject: [PATCH] Fix bundle step: avoid broken pipe from head command --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)"