From 2afe2f03973317d64fc677bafe5731965ba625c9 Mon Sep 17 00:00:00 2001 From: akitaSummer Date: Wed, 20 Dec 2023 10:41:36 +0800 Subject: [PATCH] fix: mac finder icon (#64) --- packages/cli/lib/nydusd/fuse_mode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/lib/nydusd/fuse_mode.js b/packages/cli/lib/nydusd/fuse_mode.js index d968c23..3f2e463 100644 --- a/packages/cli/lib/nydusd/fuse_mode.js +++ b/packages/cli/lib/nydusd/fuse_mode.js @@ -97,7 +97,7 @@ async function mountOverlay(cwd, pkg) { title: 'hdiutil create', }); await wrapRetry({ - cmd: async () => await execa.command(`hdiutil attach -mountpoint ${overlay} ${tmpDmg}`), + cmd: async () => await execa.command(`hdiutil attach -nobrowse -mountpoint ${overlay} ${tmpDmg}`), title: 'hdiutil attach', }); }