From 5304af7fbc5739e4d373a8ff5639dc5144c59f89 Mon Sep 17 00:00:00 2001 From: Cameron Katri Date: Sun, 17 Oct 2021 23:02:55 -0400 Subject: Use new beta directory structure --- tsssave | 8 ++++---- 1 file 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 -- cgit v1.2.3-56-ge451