Merge pull request #14 from DomiStyle/main

Fix libappimage not being able to find .desktop file
This commit is contained in:
toast2903 2023-05-26 20:06:38 -05:00 committed by GitHub
commit 794e74812a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -151,8 +151,8 @@ patchelf --set-rpath '$ORIGIN/../lib' $_EXECUTABLE
_APPDIR=$2
cd ${_APPDIR}
cp -nvs $(find -type f -regex '.*/icons/.*\.svg' || head -n 1) ./
cp -nvs $(find -type f -regex '.*/applications/.*\.desktop' || head -n 1) ./
cp -nvs $(find -type f -regex '.*/icons/.*\.svg' -printf '%P\n' || head -n 1) ./
cp -nvs $(find -type f -regex '.*/applications/.*\.desktop' -printf '%P\n' || head -n 1) ./
if [ "${_NOT_FOUND}" != "" ]; then
>&2 echo "WARNING: failed to find the following libraries:"