it is in index-36seed-1.sucatalog for beta 3
do this in terminal
Code:for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-26seed-1.sucatalog | grep com_apple_MobileAsset_MacSoftwareUpdate.plist | grep -Evw '(com_apple_MobileAsset_MacSoftwareUpdate.plist.integrityDataV1)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g); do curl -s $file | egrep -A 1 -m 2 '(>Build<|OSVersion)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g | sed -e s/"<key>"//g -e s/"<\/key>"//g -e s/\ //g echo $file | sed -e "s/com_apple_MobileAsset_MacSoftwareUpdate.plist/InstallAssistant.pkg/g" done
and u see this
Code:Build 25A5306g -- OSVersion 26.0 https://swcdn.apple.com/content/downloads/61/52/082-72240-A_VHBIKMBYNV/rg76pd3i6jfl1zpi4uy7spxgcnrb7e1olo/InstallAssistant.pkg
that's beta 3
Thanks but, "https://swscan.apple.com/content/catalogs/others/index-36seed-1.sucatalog" (or beta-1) was my first thought and curl:ing returns nothing though...?
Your code block uses the previous file index-26seed-1.sucatalog, though. Which works fine and was actually updated on July 7 and now lists two builds, the last being beta 3 build 25A5306g (i.e. need to ensure to pick the last one listed, xml/plist-parsing time at this point perhaps, if Apple keep updating the same sucatalog-file