15 lines
		
	
	
		
			454 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			454 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
 | 
						|
 | 
						|
GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest | grep "releases/tag" | grep -o 'EA-[[:digit:]]*'`
 | 
						|
APPVER=`cat $APPDIR/version.txt`
 | 
						|
 | 
						|
if [[ -z "$GITVER" ]]; then
 | 
						|
	$APPDIR/AppRun-patched
 | 
						|
elif [ "$GITVER" = "$APPVER" ]; then
 | 
						|
	$APPDIR/AppRun-patched
 | 
						|
else
 | 
						|
	$APPDIR/update.sh
 | 
						|
fi
 |