Skip to content

Commit 9be4dc6

Browse files
committed
CI - add appimage debug statements
1 parent a13a76a commit 9be4dc6

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

bin/linux/build-appimage.sh

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,25 @@ else
315315
APPIMAGETOOL="appimagetool"
316316
fi
317317

318-
# Build AppImage
318+
# Debug: Show AppDir structure before packaging
319+
echo ""
320+
echo "=== AppDir structure before packaging ==="
321+
echo "All symlinks in AppDir:"
322+
find "${APPDIR}" -type l -ls 2>/dev/null || true
323+
echo ""
324+
echo "=== AppRun location and type ==="
325+
ls -la "${APPDIR}/AppRun"
326+
file "${APPDIR}/AppRun" 2>/dev/null || true
327+
echo ""
328+
echo "=== /usr/bin contents ==="
329+
ls -la "${APPDIR}/usr/bin/" 2>/dev/null || true
319330
echo ""
331+
echo "=== Root level contents ==="
332+
ls -la "${APPDIR}/" 2>/dev/null || true
333+
echo "================================"
334+
echo ""
335+
336+
# Build AppImage
320337
echo "Building AppImage..."
321338
cd "${ROOT_DIR}/release"
322339
# In CI environments, appimagetool may fail to test the AppImage due to missing FUSE

0 commit comments

Comments
 (0)