forked from powenn/AltServer-Linux-ShellScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·36 lines (33 loc) · 1.14 KB
/
update.sh
File metadata and controls
executable file
·36 lines (33 loc) · 1.14 KB
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
31
32
33
34
35
36
#!/bin/bash
# Author of the script : powen
LocalVersion=$(sed -n 1p version)
LatestVersion=$(curl -Lsk 'https://github.com/powenn/AltServer-Linux-ShellScript/raw/main/version')
Arch=$(sed -n 2p version)
DIR=$(pwd)
if [[ $LatestVersion > $LocalVersion ]] ; then
rm -rf AltStore.ipa main
wget https://github.com/powenn/AltServer-Linux-ShellScript/raw/main/AltStore.ipa
wget https://github.com/powenn/AltServer-Linux-ShellScript/releases/download/$LatestVersion/AltServer-$Arch.zip
unzip -o AltServer-$Arch.zip
cp -R ./AltServer-$Arch/* $DIR
rm -rf AltServer-$Arch.zip AltServer-$Arch
chmod +x *.sh
if [[ -e "AltServer" ]]; then
chmod +x AltServer
fi
if [[ -e "AltServerDaemon" ]]; then
chmod +x AltServerDaemon
fi
echo "Done"
cat << EOF
What updated in version $LatestVersion ?
Script:
- Improved code
- you can delete help.txt,it wont be use anymore
For more information: https://github.com/powenn/AltServer-Linux-ShellScript
<< PLease rerun the script to apply the new version >>
EOF
fi
if [[ $LatestVersion = $LocalVersion ]] ; then
echo "you are using the latest release"
fi