You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	Linux: Fix the ldconfig dependency (#8205)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com> Co-authored-by: Helmut K. C. Tessarek <tessarek@evermeet.cx>
This commit is contained in:
		| @@ -117,7 +117,11 @@ fi | ||||
| #----------------------------------------------------- | ||||
| print "Checking dependencies..." | ||||
| ## Check if libfuse2 is present. | ||||
| LIBFUSE=$(ldconfig -p | grep "libfuse.so.2" || echo '') | ||||
| if [[ $(command -v ldconfig) ]]; then | ||||
| 	LIBFUSE=$(ldconfig -p | grep "libfuse.so.2" || echo '') | ||||
| else | ||||
| 	LIBFUSE=$(find /lib /usr/lib /lib64 /usr/lib64 /usr/local/lib -name "libfuse.so.2" 2>/dev/null | grep "libfuse.so.2" || echo '') | ||||
| fi | ||||
| if [[ $LIBFUSE == "" ]] ; then | ||||
|   print "${COLOR_RED}Error: Can't get libfuse2 on system, please install libfuse2${COLOR_RESET}" | ||||
|   print "See https://joplinapp.org/faq/#desktop-application-will-not-launch-on-linux and https://github.com/AppImage/AppImageKit/wiki/FUSE for more information" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user