This commit is contained in:
2025-09-13 22:11:21 -05:00
parent 3598c6f4ac
commit 543a999d7f

View File

@@ -111,6 +111,18 @@ const getBucketFiles = async (folderName) => {
oldItems.push(setup_key + ".sig"); oldItems.push(setup_key + ".sig");
} }
} }
if (parts[3] === "darwin") {
const dmg_key =
item.key.substring(0, item.key.length - ext.length) + ".dmg";
const dmg_item = ret.find((item) => item.key == dmg_key);
if (dmg_item) {
oldItems.push(dmg_key);
oldItems.push(dmg_key + ".sha256");
oldItems.push(dmg_key + ".sig");
}
}
} }
return false; return false;
} }