From c3d935103676fb742adc939384d1d5dde9d1cd1f Mon Sep 17 00:00:00 2001 From: Staubgeborener Date: Fri, 31 Mar 2023 15:50:03 +0200 Subject: [PATCH 1/2] Update AltStore version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Important update to prevent "no provisioning profile with the requested identifier…” error --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index 6170bea..e1dbc9a 100755 --- a/run.sh +++ b/run.sh @@ -18,8 +18,8 @@ echo "Checking source" if [[ ! -e "AltServer" ]]; then curl -L https://github.com/NyaMisty/AltServer-Linux/releases/download/v0.0.5/AltServer-"$ARCH" > AltServer fi -if [[ ! -e "AltStore.ipa" ]]; then - curl -L https://cdn.altstore.io/file/altstore/apps/altstore/1_5_1.ipa > AltStore.ipa +if [[ ! -e "AltStore.ipa" ]] || !( md5sum AltStore.ipa | cut -f 1 -d " " | grep -q "e3ac2bd77cedf0fa80531023d402ba83" ); then + curl -L https://cdn.altstore.io/file/altstore/apps/altstore/1_6_2.ipa > AltStore.ipa fi if [[ ! -e "main" ]]; then wget https://github.com/powenn/AltServer-Linux-ShellScript/raw/main/main From 7f3658d920adbc8dd5d8067e01109260f31eeb7d Mon Sep 17 00:00:00 2001 From: Staubgeborener Date: Fri, 31 Mar 2023 22:32:32 +0200 Subject: [PATCH 2/2] change code style --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index e1dbc9a..e40be6b 100755 --- a/run.sh +++ b/run.sh @@ -18,7 +18,7 @@ echo "Checking source" if [[ ! -e "AltServer" ]]; then curl -L https://github.com/NyaMisty/AltServer-Linux/releases/download/v0.0.5/AltServer-"$ARCH" > AltServer fi -if [[ ! -e "AltStore.ipa" ]] || !( md5sum AltStore.ipa | cut -f 1 -d " " | grep -q "e3ac2bd77cedf0fa80531023d402ba83" ); then +if [[ ! -e "AltStore.ipa" ]] || !( md5sum AltStore.ipa | cut -d " " -f 1 | grep -q "e3ac2bd77cedf0fa80531023d402ba83" ); then curl -L https://cdn.altstore.io/file/altstore/apps/altstore/1_6_2.ipa > AltStore.ipa fi if [[ ! -e "main" ]]; then