summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtsssave8
1 files changed, 4 insertions, 4 deletions
diff --git a/tsssave b/tsssave
index accccf2..cae16f7 100755
--- a/tsssave
+++ b/tsssave
@@ -76,15 +76,15 @@ for device in $(yq e '.devices | keys | .[]' ${config}); do
# BETA VERSIONS
for signed in $(curl -sL https://api.m1sta.xyz/betas/${deviceid} | jq -re '.[] | select(.signed == true) | .buildid'); do
- version="$(curl -s https://api.m1sta.xyz/betas/${deviceid} | jq -re ".[] | select(.buildid == \"${signed}\") | .version")"
- if [ -e ${output}/${device}/${version}/beta/$(printf "%d\n" ${ecid})_${deviceid}_$(printf "${board}\n" | tr '[A-Z]' '[a-z]')_*-${signed}_*.shsh2 ]; then
+ version="$(curl -s https://api.m1sta.xyz/betas/${deviceid} | jq -re ".[] | select(.buildid == \"${signed}\") | .version" | sed 's/ /-/g')"
+ if [ -e ${output}/${device}/${version}/$(printf "%d\n" ${ecid})_${deviceid}_$(printf "${board}\n" | tr '[A-Z]' '[a-z]')_*-${signed}_*.shsh2 ]; then
printf "Skipping %s...\n" ${signed}
else
printf "Saving %s...\n" ${signed}
pzb "$(curl -sL https://api.m1sta.xyz/betas/${deviceid} | jq -re ".[] | select(.buildid == \"${signed}\") | .url")" -g BuildManifest.plist -o BuildManifest-${board}-${signed}.plist
- mkdir -p ${output}/${device}/${version}/beta/
+ mkdir -p ${output}/${device}/${version}/
tsschecker -d "${deviceid}" -B "${board}" -m /tmp/BuildManifest-${board}-${signed}.plist -s -e "${ecid}" --generator "${generator}" \
- --apnonce "${apnonce}" --save-path ${output}/${device}/${version}/beta/
+ --apnonce "${apnonce}" --save-path ${output}/${device}/${version}/
fi
done
done