-
Notifications
You must be signed in to change notification settings - Fork 16
/
updatePGEfast.sh
30 lines (25 loc) · 928 Bytes
/
updatePGEfast.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env bash
baseuri="https://github.com/GloriousEggroll/proton-ge-custom/releases/download"
latesturi="https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest"
dstpath="$HOME/.steam/root/compatibilitytools.d"
latestversion="$(curl -s $latesturi | egrep -m1 "tag_name" | cut -d \" -f4)"
if [[ -d $dstpath/Proton-$latestversion ]]
then
echo "Proton $latestversion is the latest version and is already installed."
echo "Exiting..."
exit 0
else
echo "Proton $latestversion is the latest version and is not installed yet."
echo "Installing Proton $latestverion"
url=$(curl -s $latesturi | egrep -m1 "browser_download_url.*Proton" | cut -d \" -f4)
fi
rsp="$(curl -sI "$url" | head -1)"
echo "$rsp" | grep -q 302 || {
echo "$rsp"
exit 1
}
[ -d "$dstpath" ] || {
mkdir "$dstpath"
echo [Info] Created "$dstpath"
}
curl -sL "$url" | tar xfzv - -C "$dstpath"