diff --git a/shared/install/macos.js b/shared/install/macos.js index ccfd5d9..7605c26 100644 --- a/shared/install/macos.js +++ b/shared/install/macos.js @@ -39,7 +39,7 @@ const exec = async (...args) => { const cwdExists = !!(await fs.stat(cwd).catch(() => null)); if (error.code === 'ENOENT' && !cwdExists) { - throw new Error(`Cannot access directory: ${cwd}`, {cause: error}); + throw new Error(`Cannot access directory: ${cwd}`, { cause: error }); } throw error;