Skip to content

Commit 22994af

Browse files
committed
fix --openfolder not supported on Apple Silicon
1 parent c3afcf0 commit 22994af

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vendor/create-dmg/create-dmg

+3-1
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,10 @@ echo "Done fixing permissions."
367367
# make the top window open itself on mount:
368368
if [ $SANDBOX_SAFE -eq 0 ]; then
369369
echo "Blessing started"
370-
bless --folder "${MOUNT_DIR}" --openfolder "${MOUNT_DIR}"
370+
bless --folder "${MOUNT_DIR}"
371371
echo "Blessing finished"
372+
echo "Opening directory"
373+
open "${MOUNT_DIR}"
372374
else
373375
echo "Skipping blessing on sandbox"
374376
fi

0 commit comments

Comments
 (0)