releases: new factory images format for stable

This commit is contained in:
Daniel Micay
2024-08-06 12:04:05 -04:00
parent ff5968ba40
commit fe80b256bf
2 changed files with 29 additions and 29 deletions

View File

@@ -24,7 +24,7 @@ async function updateReleases() {
}).then(text => {
const metadata = text.trim().split(" ");
const factoryFormat = channel === "stable" || legacyFactoryDevices.has(device) ? "factory" : "install";
const factoryFormat = legacyFactoryDevices.has(device) ? "factory" : "install";
const factoryFilename = `${device}-${factoryFormat}-${metadata[0]}.zip`;
const factoryUrl = baseUrl + factoryFilename;