From 844997add34260429599481cdf5e8fa4b4ce67e7 Mon Sep 17 00:00:00 2001 From: jkhsjdhjs Date: Thu, 17 Mar 2022 11:29:56 +0000 Subject: [PATCH] Add --nocache tsschecker parameter Cached files like the firmwares.json can prevent tsschecker to successfully save SHSH blobs for recent firmwares. The --nocache parameter makes tsschecker redownload these files each time, thus avoiding this problem. See also: https://github.com/tihmstar/tsschecker/issues/166 --- autotss.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autotss.py b/autotss.py index 6822be0..43faa85 100755 --- a/autotss.py +++ b/autotss.py @@ -140,6 +140,7 @@ def saveBlobs(self, device, buildID, versionNumber): os.makedirs(savePath) scriptArguments = [self.scriptPath, + '--nocache', '-d', device['deviceID'], '-e', device['deviceECID'], '--boardconfig', device['boardConfig'],