mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2026-08-03 13:27:30 +03:00
Update checksum URL extraction logic
Refine checksum URL extraction to exclude aarch64 builds.
This commit is contained in:
@@ -652,7 +652,11 @@ function download_ge_proton() {
|
||||
}
|
||||
|
||||
checksum_url=$(curl -s https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest \
|
||||
| grep browser_download_url | cut -d\" -f4 | grep .sha512sum)
|
||||
| grep browser_download_url \
|
||||
| cut -d\" -f4 \
|
||||
| grep '\.sha512sum$' \
|
||||
| grep -v 'aarch64' \
|
||||
| head -n1)
|
||||
|
||||
if [ -z "$checksum_url" ]; then
|
||||
echo "Failed to get checksum URL. Exiting."
|
||||
|
||||
Reference in New Issue
Block a user