Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions admin/linux/build-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@ rm -rf usr/share/nemo-python/
mkdir -p AppDir/usr/share
mv usr/share/${EXECUTABLE_NAME} AppDir/usr/share/${EXECUTABLE_NAME}

# Move sync exclude to right location
mv /app/etc/*/sync-exclude.lst usr/bin/
# Move sync exclude to right location. It has to end up inside AppDir
# (not just /app), otherwise it is never packed into the AppImage and
# ConfigFile::excludeFileFromSystem()'s AppImage fallback finds nothing
# next to the executable at runtime.
mkdir -p AppDir/usr/bin
mv /app/etc/*/sync-exclude.lst AppDir/usr/bin/
rm -rf etc

# com.nextcloud.desktopclient.nextcloud.desktop
Expand Down
Loading