We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceca01e commit 3f2c8bdCopy full SHA for 3f2c8bd
1 file changed
lib/appdmg.js
@@ -396,10 +396,13 @@ module.exports = exports = function (options) {
396
397
pipeline.addStep('Blessing image', function (next) {
398
const args = [
399
- '--folder', global.temporaryMountPath,
400
- '--openfolder', global.temporaryMountPath
+ '--folder', global.temporaryMountPath
401
]
402
+ if (os.arch() !== 'arm64') {
403
+ args.push('--openfolder', global.temporaryMountPath)
404
+ }
405
+
406
util.sh('bless', args, next)
407
})
408
0 commit comments