Created
May 7, 2023 09:39
-
-
Save valex91/88a9a554baa4af80df4f5b1d11a44b37 to your computer and use it in GitHub Desktop.
Update emudeck yuzu image to latest EA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
tagName=$(curl --silent "https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest" | | |
grep '"tag_name":' | | |
sed -E 's/.*"([^"]+)".*/\1/') | |
curl -JLO "https://github.com/pineappleEA/pineapple-src/releases/download/${tagName}/Linux-Yuzu-${tagName}.AppImage" | |
mv -f "Linux-Yuzu-${tagName}.AppImage" $HOME/Applications/yuzu.AppImage | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment