diff --git a/src/node/Launcher.ts b/src/node/Launcher.ts index b116be45..2ea2709c 100644 --- a/src/node/Launcher.ts +++ b/src/node/Launcher.ts @@ -105,8 +105,8 @@ class ChromeLauncher implements ProductLauncher { let chromeExecutable = executablePath; if (!executablePath) { - // Use Intel x86 builds on Apple M1 until native macOS arm64 - // Chromium builds are available. + // Use Intel x86 builds on Apple M1 until native macOS arm64 + // Chromium builds are available. if (os.platform() !== 'darwin' && os.arch() === 'arm64') { chromeExecutable = '/usr/bin/chromium-browser'; } else { diff --git a/src/node/install.ts b/src/node/install.ts index bb44f4e2..373cfbd5 100644 --- a/src/node/install.ts +++ b/src/node/install.ts @@ -90,8 +90,8 @@ export async function downloadBrowser() { if (NPM_NO_PROXY) process.env.NO_PROXY = NPM_NO_PROXY; function onSuccess(localRevisions: string[]): void { - // Use Intel x86 builds on Apple M1 until native macOS arm64 - // Chromium builds are available. + // Use Intel x86 builds on Apple M1 until native macOS arm64 + // Chromium builds are available. if (os.platform() !== 'darwin' && os.arch() !== 'arm64') { logPolitely( `${supportedProducts[product]} (${revisionInfo.revision}) downloaded to ${revisionInfo.folderPath}`