Fix bundle step: avoid broken pipe from head command

This commit is contained in:
forbes
2026-01-29 06:11:15 -06:00
parent e02d0db326
commit e5f7effc5c

View File

@@ -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)"