From 0f7c5cb5e23fc05c9669741ff3ce7fe0f280dbf3 Mon Sep 17 00:00:00 2001 From: Alexander Gehrke Date: Sat, 11 Apr 2020 13:04:35 +0200 Subject: [PATCH] Use correct URL in GE-Proton installer --- misc/install-proton-ge.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/install-proton-ge.zsh b/misc/install-proton-ge.zsh index ccbb128..c167b9d 100755 --- a/misc/install-proton-ge.zsh +++ b/misc/install-proton-ge.zsh @@ -25,7 +25,7 @@ installed_tags="$COMPTOOLSDIR/proton-ge-tags" if grep -q "^$release_tag\$" "$installed_tags"; then echo "${fg_bold[yellow]}Current release $release_tag already installed.$reset_color" else - echo $release_tag >> .steam/root/compatibilitytools.d/proton-ge-tags - curl -L $(jq -r '.tarball_url'<<<"$latest_json") | tar -C $COMPTOOLSDIR -xvz + echo $release_tag >> $COMPTOOLSDIR/proton-ge-tags + curl -L $(jq -r '.assets[0].browser_download_url'<<<"$latest_json") | tar -C $COMPTOOLSDIR -xvz echo "${fg_bold[green]}Installed release $release_tag.$reset_color" fi