Add notes on unsupported bundles

This commit is contained in:
Sam Carlton 2022-07-18 21:21:53 -05:00
parent fe6f004233
commit 383a4b2730

View file

@ -23,7 +23,19 @@ const appsPath = 'test/_artifacts/apps'
const tempPath = 'test/_artifacts/temp' const tempPath = 'test/_artifacts/temp'
const plainAppBundles = glob.sync( `${ appsPath }/**/*.app`, appGlobOptions ) // TODO: Unsupported Apps:
// Alt Tab 6.29.0 - Hangs
// Silicon - Fail with both MachoNode and MachoManiac
// arm_idafree76_mac 7.6 - Hangs
// Batteries 2.2.4 - Hangs
// BetterZip 5.1.1 - Hangs
// BlueJeans - May work but doesn't work with zip compression
const plainAppBundles = glob
.sync( `${ appsPath }/**/*.app`, appGlobOptions )
.filter( bundlePath => {
return true
// return bundlePath.includes( 'BlueJeans' )
})
async function makeZipFromBundlePath ( bundlePath ) { async function makeZipFromBundlePath ( bundlePath ) {