Skip to content

Instantly share code, notes, and snippets.

@valex91
Created May 7, 2023 09:39
Show Gist options
  • Save valex91/88a9a554baa4af80df4f5b1d11a44b37 to your computer and use it in GitHub Desktop.
Save valex91/88a9a554baa4af80df4f5b1d11a44b37 to your computer and use it in GitHub Desktop.
Update emudeck yuzu image to latest EA
#!/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