From dd6396dd39a50de3eb99dcf9d1f30057b583deaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Weslley=20Ara=C3=BAjo?= <46850407+wellwelwel@users.noreply.github.com> Date: Fri, 30 May 2025 04:52:22 -0300 Subject: [PATCH] fix: include Arc to supported Chromium Browsers (#11217) --- .../docusaurus/src/commands/utils/openBrowser/openBrowser.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/docusaurus/src/commands/utils/openBrowser/openBrowser.ts b/packages/docusaurus/src/commands/utils/openBrowser/openBrowser.ts index cfef20b003..a0dd2654ce 100644 --- a/packages/docusaurus/src/commands/utils/openBrowser/openBrowser.ts +++ b/packages/docusaurus/src/commands/utils/openBrowser/openBrowser.ts @@ -64,6 +64,7 @@ async function tryOpenWithAppleScript({ 'Brave Browser', 'Vivaldi', 'Chromium', + 'Arc', ]; // Among all the supported browsers, retrieves to stdout the active ones @@ -72,7 +73,7 @@ async function tryOpenWithAppleScript({ )})$"`; const result = await execPromise(command).catch(() => { - // Ignore grep errors when macOS user has no Chromium-based browser + // Ignore grep errors when macOS user has no Chromium-based browser open // See https://github.com/facebook/docusaurus/issues/11204 }); if (!result) {