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 (34 loc) · 1.29 KB
/
update.sh
File metadata and controls
executable file
·36 lines (34 loc) · 1.29 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
cd "$(dirname "$0")"
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
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:
- Fix loop issue, now you can stay at the script after install AltStore or ipa
- Daemon mode will keep running in background,so you can sign in after install Altstore
- Merged 1 and 2 option into "i" option,in i option, you can select install AltStore or ipa or back to AltServer Script
<< PLease rerun the script to apply the new version >>
EOF
fi
if [[ $LatestVersion = $LocalVersion ]] ; then
echo "you are using the latest release"
fi