mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Add notes on unsupported bundles
This commit is contained in:
parent
fe6f004233
commit
383a4b2730
1 changed files with 13 additions and 1 deletions
|
|
@ -23,7 +23,19 @@ const appsPath = 'test/_artifacts/apps'
|
|||
|
||||
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 ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue